impaktapps-ui-builder 0.0.393-alpha.13 → 0.0.393-alpha.14

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.
@@ -10608,7 +10608,7 @@ function buildRule(configObj, tableName, arrayHolderName) {
10608
10608
  }
10609
10609
  } else if ((configObj.type === "Select" || configObj.type === "MultipleSelect") && ((_j = configObj.value) == null ? void 0 : _j.length) >= 0) {
10610
10610
  if (configObj.type === "Select") {
10611
- let oneOfOptions = configObj.value && configObj.value.length > 0 ? configObj.value.map((e) => ({ const: e.value, title: e.label })) : [{ const: "", title: "" }];
10611
+ let oneOfOptions = configObj.value && configObj.value.length > 0 ? configObj.value.map((e) => ({ const: e.value, title: e.label })) : [{ const: "aaa", title: "bbb" }];
10612
10612
  schema.properties[configObj.name] = {
10613
10613
  oneOf: oneOfOptions
10614
10614
  };