fix an issue in edit dialog
This commit is contained in:
parent
322dcc1458
commit
f60cf5de10
1 changed files with 3 additions and 1 deletions
|
@ -262,7 +262,9 @@ oml.ui.editDialog = function() {
|
|||
Ox.EditableContent({
|
||||
editable: true,
|
||||
format: function(value) {
|
||||
return formatValue(Ox.encodeHTMLEntities(value));
|
||||
return formatValue(
|
||||
Ox.encodeHTMLEntities(value), 'description'
|
||||
);
|
||||
},
|
||||
placeholder: formatLight('No Description'),
|
||||
tooltip: tooltip,
|
||||
|
|
Loading…
Reference in a new issue