Fixed tagging of localizable keys by multiCombo fields

This commit is contained in:
Minh Nguyễn
2022-06-15 16:49:26 -07:00
parent d0b1fb1ebe
commit 2433664063
+1 -1
View File
@@ -222,7 +222,7 @@ export function uiFieldCombo(field, context) {
var label = field.t('options.' + k, { default: k });
return {
key: k,
value: label,
value: _isMulti ? k : label,
display: field.t.append('options.' + k, { default: k }),
title: d.title || label,
klass: field.hasTextForStringId('options.' + k) ? '' : 'raw-option'