Commit 0fc728f5 authored by yann300's avatar yann300

fix removing module

parent 7042b85b
...@@ -63,7 +63,7 @@ export function generateHomePage (appManager, appStore) { ...@@ -63,7 +63,7 @@ export function generateHomePage (appManager, appStore) {
payload: () => { payload: () => {
appStore.getActives() appStore.getActives()
.filter(({profile}) => !profile.required) .filter(({profile}) => !profile.required)
.forEach((profile) => { appManager.deactivateOne(profile.name) }) .forEach(({profile}) => { appManager.deactivateOne(profile.name) })
}}) }})
defaultWorkspaces(appManager).forEach((workspace) => { defaultWorkspaces(appManager).forEach((workspace) => {
sectionsWorkspaces.push({label: workspace.title, type: 'callback', payload: () => { workspace.activate() }}) sectionsWorkspaces.push({label: workspace.title, type: 'callback', payload: () => { workspace.activate() }})
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment