arrow-animation-is-not-working-after-loading-fixed
[arvados-workbench2.git] / src / store / project / project-reducer.ts
index 94a451a86574e70de24f6d143ede7217ce25cf9c..163e687e614787c2a2069681c43d2457f1fbf1fc 100644 (file)
@@ -139,7 +139,6 @@ export const projectsReducer = (state: ProjectState = initialState, action: Proj
             const items = _.cloneDeep(state.items);
             const item = findTreeItem(items, itemId);
             if (item) {
-                item.toggled = true;
                 item.open = !item.open;
             }
             return {
@@ -153,7 +152,6 @@ export const projectsReducer = (state: ProjectState = initialState, action: Proj
             resetTreeActivity(items);
             const item = findTreeItem(items, itemId);
             if (item) {
-                item.toggled = true;
                 item.active = true;
             }
             return {