forked from 0x2620/pandora
fix a bug in id dialog
This commit is contained in:
parent
b1949b45aa
commit
ea3197d37d
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ pandora.ui.idDialog = function(data) {
|
||||||
Ox.Input({
|
Ox.Input({
|
||||||
label: Ox.toTitleCase(key),
|
label: Ox.toTitleCase(key),
|
||||||
labelWidth: 128,
|
labelWidth: 128,
|
||||||
value: key == 'director'
|
value: key == 'director' && data[key]
|
||||||
? data[key].join(', ')
|
? data[key].join(', ')
|
||||||
: data[key],
|
: data[key],
|
||||||
width: formWidth
|
width: formWidth
|
||||||
|
|
Loading…
Reference in a new issue