[#1593] Update isExpanded prop in Editor

- Change `isExpanded` from `ide.consoleIsExpanded` to
  `ide.sidebarIsExpanded`
This commit is contained in:
Cassie Tarakajian 2020-09-02 15:19:17 -04:00
parent a6cc2b3d3f
commit 0205dea56e

View file

@ -446,7 +446,7 @@ function mapStateToProps(state) {
...state.ide,
...state.project,
...state.editorAccessibility,
isExpanded: state.ide.consoleIsExpanded,
isExpanded: state.ide.sidebarIsExpanded,
projectSavedTime: state.project.updatedAt
};
}