fix(Field): should not display null (#6542)
This commit is contained in:
+1
-1
@@ -280,7 +280,7 @@ export default createComponent({
|
||||
},
|
||||
|
||||
updateValue(value) {
|
||||
value = String(value);
|
||||
value = isDef(value) ? String(value) : '';
|
||||
|
||||
if (value === this.currentValue) {
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user