feat(Map): Map now is closed by default (#13980)
This commit is contained in:
committed by
Quincy Larson
parent
c94f5e34c3
commit
53001012d1
@ -387,12 +387,12 @@ export function createMapUi(
|
||||
children: superBlocks.map(superBlock => {
|
||||
return {
|
||||
name: superBlock,
|
||||
isOpen: true,
|
||||
isOpen: false,
|
||||
isHidden: false,
|
||||
children: protect(superBlockMap[superBlock]).blocks.map(block => {
|
||||
return {
|
||||
name: block,
|
||||
isOpen: true,
|
||||
isOpen: false,
|
||||
isHidden: false,
|
||||
children: protect(blockMap[block]).challenges.map(challenge => {
|
||||
return {
|
||||
|
Reference in New Issue
Block a user