From 53001012d1d80221305e8f21eac63b9de0460191 Mon Sep 17 00:00:00 2001 From: Berkeley Martinez Date: Sat, 18 Mar 2017 00:38:11 -0700 Subject: [PATCH] feat(Map): Map now is closed by default (#13980) --- common/app/routes/challenges/utils.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/app/routes/challenges/utils.js b/common/app/routes/challenges/utils.js index ced3e074a3..c58dad00a0 100644 --- a/common/app/routes/challenges/utils.js +++ b/common/app/routes/challenges/utils.js @@ -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 {