Merge pull request #1594 from processing/bug/sidebar-cant-expand

[#1593] Update `isExpanded` prop in Editor
This commit is contained in:
Cassie Tarakajian 2020-09-02 15:21:28 -04:00 committed by GitHub
commit b7ab455518
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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
};
}