@dartech/arsenal-ui 1.4.69 → 1.4.70

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. 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 (!(isPropertyValueEmpty(property.defaultValue) || isPropertyValueEmpty(property.value))) {
6892
+ } else if (!isPropertyValueEmpty(property.defaultValue) || !isPropertyValueEmpty(property.value)) {
6893
6893
  setValue(name, property.defaultValue || property.value);
6894
6894
  }
6895
6895
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dartech/arsenal-ui",
3
- "version": "1.4.69",
3
+ "version": "1.4.70",
4
4
  "author": "DAR",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"