fix(workspace-mode): Add to config schema so it defaults to list properly

This commit is contained in:
Ben Gotow 2015-09-09 13:34:31 -07:00
parent 748c4c899c
commit 8db4f82dc4

View file

@ -7,6 +7,13 @@ module.exports =
core:
type: 'object'
properties:
workspace:
type: 'object'
properties:
mode:
type: 'string'
default: 'list'
enum: ['split', 'list']
showUnreadBadge:
type: 'boolean'
default: true