arengibook 2.4.634 → 2.4.635
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/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -39338,7 +39338,7 @@ var MultiSelectMetaAsync = function MultiSelectMetaAsync(_ref) {
|
|
|
39338
39338
|
}), name && /*#__PURE__*/React__default.createElement("input", {
|
|
39339
39339
|
type: "hidden",
|
|
39340
39340
|
name: name,
|
|
39341
|
-
value: selectedOptions.map(function (opt) {
|
|
39341
|
+
value: (Array.isArray(selectedOptions) ? selectedOptions : []).map(function (opt) {
|
|
39342
39342
|
return opt[optionValue];
|
|
39343
39343
|
}).join(',')
|
|
39344
39344
|
}), invalid && /*#__PURE__*/React__default.createElement("div", null, /*#__PURE__*/React__default.createElement("small", {
|