impaktapps-ui-builder 0.0.393-alpha.7 → 0.0.393-alpha.8
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.
|
@@ -10624,15 +10624,9 @@ function buildRule(configObj, tableName, arrayHolderName) {
|
|
|
10624
10624
|
}
|
|
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
|
-
schema.properties[configObj.name] = {
|
|
10628
|
-
oneOf: []
|
|
10629
|
-
};
|
|
10627
|
+
schema.properties[configObj.name] = {};
|
|
10630
10628
|
} else if (configObj.type === "MultipleSelect") {
|
|
10631
|
-
schema.properties[configObj.name] = {
|
|
10632
|
-
items: {
|
|
10633
|
-
oneOf: []
|
|
10634
|
-
}
|
|
10635
|
-
};
|
|
10629
|
+
schema.properties[configObj.name] = {};
|
|
10636
10630
|
}
|
|
10637
10631
|
}
|
|
10638
10632
|
if (configObj.validation) {
|