Skip to content

Commit

Permalink
FIX theming bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ndelangen committed Mar 1, 2019
1 parent 7622f72 commit f03d7e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/ui/src/core/layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ export default function({ store }) {
};

const fromState = pick(store.getState(), 'layout', 'ui', 'selectedPanel');
const fromRestore = pick(store.getInitialState(), 'layout', 'ui', 'selectedPanel');

const initial = {
ui: {
enableShortcuts: true,
Expand All @@ -177,7 +177,7 @@ export default function({ store }) {
},
};

const state = merge({}, fromRestore, fromState, initial);
const state = merge(fromState, initial);

return { api, state };
}

1 comment on commit f03d7e9

@vercel
Copy link

@vercel vercel bot commented on f03d7e9 Mar 1, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You are pushing commits at a very fast pace (accross the whole organization).
Due to that, we cannot deploy the commit f03d7e9.

You can try again later or upgrade your plan.

Please sign in to comment.