All the enabled layouts are now enlisted on the sidebar in accordance with config.ts

This commit is contained in:
Gabor PEK
2018-04-20 09:22:23 +02:00
committed by Kristóf Tóth
parent 959a0df3d6
commit a0d5dfdddc
22 changed files with 48 additions and 23 deletions

View File

@ -1,14 +1,22 @@
export const config = {
dashboard: {
route: 'dashboard',
defaultLayout: 'terminal-ide-vertical',
enabledLayouts: [
currentLayout: 'terminal-ide-web',
enabledLayouts: new Set([
'terminal-ide-web',
'terminal-web',
'web-only'
]),
allLayouts: new Set([
'terminal-ide-web',
'terminal-ide-vertical',
'terminal-ide-horizontal',
'terminal-only',
'ide-only'
]
'terminal-web',
'ide-web-vertical',
'ide-only',
'web-only'
]),
},
ide: {
route: 'ide',