fix regression: labels are not rendered in multi/semiCombo chips

regression was in 479586be37
This commit is contained in:
Martin Raifer
2022-12-16 12:12:03 +01:00
parent 17a68eefe7
commit aeeb441e8b
+1 -1
View File
@@ -149,7 +149,7 @@ export function uiFieldCombo(field, context) {
var stringsField = field.resolveReference('stringsCrossReference');
const labelId = getLabelId(stringsField, tval);
if (stringsField.hasTextForStringId(labelId)) {
return stringsField.t(labelId, { default: tval });
return stringsField.t.append(labelId, { default: tval });
}
if (field.type === 'typeCombo' && tval.toLowerCase() === 'yes') {