arengibook 2.4.642 → 2.4.643
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 +4 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -39354,10 +39354,14 @@ var MultiSelectMetaAsync = function MultiSelectMetaAsync(_ref) {
|
|
|
39354
39354
|
console.log(loadedOptions.find(function (opt) {
|
|
39355
39355
|
return opt[optionValue] === option;
|
|
39356
39356
|
}));
|
|
39357
|
+
console.log(loadedOptions.find(function (opt) {
|
|
39358
|
+
return Number(opt[optionValue]) === Number(option);
|
|
39359
|
+
}));
|
|
39357
39360
|
console.log(selectedOption);
|
|
39358
39361
|
console.log(objValue);
|
|
39359
39362
|
console.log(selectedOptions);
|
|
39360
39363
|
console.log(loadedOptions);
|
|
39364
|
+
console.log(option);
|
|
39361
39365
|
if (!selectedOption) return null;
|
|
39362
39366
|
var handleRemove = function handleRemove(e) {
|
|
39363
39367
|
e.stopPropagation();
|