fix rendering of chip labels in localizable multiCombo fields

closes #9169
This commit is contained in:
Martin Raifer
2022-06-22 14:57:58 +02:00
parent 38dc298caa
commit edf711ca2b
2 changed files with 6 additions and 2 deletions
+4 -2
View File
@@ -546,10 +546,12 @@ export function uiFieldCombo(field, context) {
}
chips.select('span').each(function(d) {
const selection = d3_select(this);
if (d.display) {
d.display(d3_select(this));
selection.text('');
d.display(selection);
} else {
d3_select(this).text(d.value);
selection.text(d.value);
}
});