Commit 933d9a82 authored by broven's avatar broven

form-item: fix #3226

parent 4aabc95a
......@@ -164,7 +164,7 @@
if (Array.isArray(value) && value.length > 0) {
this.validateDisabled = true;
prop.o[prop.k] = [];
} else if (value) {
} else if (value !== '') {
this.validateDisabled = true;
prop.o[prop.k] = this.initialValue;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment