fix removing module

pull/1/head
yann300 6 years ago
parent 7042b85b0e
commit 0fc728f546
  1. 2
      src/app/ui/landing-page/generate.js

@ -63,7 +63,7 @@ export function generateHomePage (appManager, appStore) {
payload: () => {
appStore.getActives()
.filter(({profile}) => !profile.required)
.forEach((profile) => { appManager.deactivateOne(profile.name) })
.forEach(({profile}) => { appManager.deactivateOne(profile.name) })
}})
defaultWorkspaces(appManager).forEach((workspace) => {
sectionsWorkspaces.push({label: workspace.title, type: 'callback', payload: () => { workspace.activate() }})

Loading…
Cancel
Save