impaktapps-ui-builder 0.0.393-alpha.6 → 0.0.393-alpha.7

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.
@@ -10625,12 +10625,12 @@ function buildRule(configObj, tableName, arrayHolderName) {
10625
10625
  } else if ((configObj.type === "Select" || configObj.type === "MultipleSelect") && ((_k = configObj.value) == null ? void 0 : _k.length) === 0) {
10626
10626
  if (configObj.type === "Select") {
10627
10627
  schema.properties[configObj.name] = {
10628
- oneOf: {}
10628
+ oneOf: []
10629
10629
  };
10630
10630
  } else if (configObj.type === "MultipleSelect") {
10631
10631
  schema.properties[configObj.name] = {
10632
10632
  items: {
10633
- oneOf: {}
10633
+ oneOf: []
10634
10634
  }
10635
10635
  };
10636
10636
  }