clear "None" placehoder in fields, fixes #8984

This commit is contained in:
Martin Raifer
2022-02-15 18:34:30 +01:00
parent 09d98b7095
commit cd4f4f37f1
+1
View File
@@ -302,6 +302,7 @@ export function uiFieldRadio(field, context) {
var selection = radios.filter(function() { return this.checked; });
if (selection.empty()) {
placeholder.text('');
placeholder.call(t.append('inspector.none'));
} else {
placeholder.text(selection.attr('value'));