Add toggle for row title

Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2015-05-06 15:22:25 -04:00
parent b81f524829
commit dc098023c9
2 changed files with 2 additions and 0 deletions

View File

@ -23,6 +23,7 @@ class Row(object):
v.Required('editable', default=True): v.All(bool),
v.Required('height'): v.All(str),
v.Required('panels', default=[]): list,
v.Required('showTitle', default=False): v.All(bool),
v.Required('title'): v.All(str, v.Length(min=1)),
}
schema = v.Schema({

View File

@ -4,3 +4,4 @@ rows:
editable: true
collapse: false
panels: []
showTitle: false