@dartech/arsenal-ui 1.4.69 → 1.4.70
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -6889,7 +6889,7 @@ const PropertyFiller = ({
|
|
|
6889
6889
|
});
|
|
6890
6890
|
} else if (!property.isRequired && (property.defaultValue === null || property.value === null)) {
|
|
6891
6891
|
setValue(name, null);
|
|
6892
|
-
} else if (!
|
|
6892
|
+
} else if (!isPropertyValueEmpty(property.defaultValue) || !isPropertyValueEmpty(property.value)) {
|
|
6893
6893
|
setValue(name, property.defaultValue || property.value);
|
|
6894
6894
|
}
|
|
6895
6895
|
}
|