Skip to content
Snippets Groups Projects
Unverified Commit 98dcb054 authored by Jack Reed's avatar Jack Reed Committed by GitHub
Browse files

Merge pull request #1846 from ProjectMirador/1823-fixed-window-order

Use a consistent sort for windows; fixes #1823
parents 58d8b76f d0b6b7fc
No related branches found
No related tags found
No related merge requests found
......@@ -52,7 +52,7 @@ class WorkspaceMosaic extends React.Component {
*/
determineWorkspaceLayout() {
const { windows, workspace } = this.props;
const windowKeys = Object.keys(windows);
const windowKeys = Object.keys(windows).sort();
const leaveKeys = getLeaves(workspace.layout);
// Check every window is in the layout, and all layout windows are present
// in store
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment