fix info view
This commit is contained in:
parent
6459e7975a
commit
25e202edeb
1 changed files with 5 additions and 3 deletions
|
@ -522,9 +522,11 @@ oml.ui.infoView = function(identifyData) {
|
||||||
clickLink: oml.clickLink,
|
clickLink: oml.clickLink,
|
||||||
editable: isEditable,
|
editable: isEditable,
|
||||||
format: function(value) {
|
format: function(value) {
|
||||||
return key == 'place'
|
return formatValue(
|
||||||
? formatValue(value.split('; '), key)
|
Ox.contains(arrayKeys, key)
|
||||||
: value
|
? value.split('; ') : value,
|
||||||
|
key
|
||||||
|
);
|
||||||
},
|
},
|
||||||
placeholder: formatLight(Ox._('unknown')),
|
placeholder: formatLight(Ox._('unknown')),
|
||||||
tooltip: isEditable ? oml.getEditTooltip() : '',
|
tooltip: isEditable ? oml.getEditTooltip() : '',
|
||||||
|
|
Loading…
Add table
Reference in a new issue