decode titles in id dialog, fixes #1448
This commit is contained in:
parent
61a37645fd
commit
3c4e5f266c
1 changed files with 2 additions and 2 deletions
|
@ -95,9 +95,9 @@ pandora.ui.idDialog = function(data) {
|
|||
Ox.Input({
|
||||
label: Ox.toTitleCase(key),
|
||||
labelWidth: 128,
|
||||
value: key == 'director' && data[key]
|
||||
value: Ox.decodeHTMLEntities(key == 'director' && data[key]
|
||||
? data[key].join(', ')
|
||||
: data[key],
|
||||
: data[key]),
|
||||
width: formWidth
|
||||
})
|
||||
.css({display: 'inline-block', margin: '3px'})
|
||||
|
|
Loading…
Reference in a new issue