feat(Map): Map now is closed by default (#13980)

This commit is contained in:
Berkeley Martinez
2017-03-18 00:38:11 -07:00
committed by Quincy Larson
parent c94f5e34c3
commit 53001012d1

View File

@ -387,12 +387,12 @@ export function createMapUi(
children: superBlocks.map(superBlock => { children: superBlocks.map(superBlock => {
return { return {
name: superBlock, name: superBlock,
isOpen: true, isOpen: false,
isHidden: false, isHidden: false,
children: protect(superBlockMap[superBlock]).blocks.map(block => { children: protect(superBlockMap[superBlock]).blocks.map(block => {
return { return {
name: block, name: block,
isOpen: true, isOpen: false,
isHidden: false, isHidden: false,
children: protect(blockMap[block]).challenges.map(challenge => { children: protect(blockMap[block]).challenges.map(challenge => {
return { return {