odaptos_design_system 2.0.75 → 2.0.76
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/odaptos_design_system.cjs.development.js +1 -1
- package/dist/odaptos_design_system.cjs.development.js.map +1 -1
- package/dist/odaptos_design_system.cjs.production.min.js +1 -1
- package/dist/odaptos_design_system.cjs.production.min.js.map +1 -1
- package/dist/odaptos_design_system.esm.js +1 -1
- package/dist/odaptos_design_system.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/Organisms/MultiSelect/MultiSelectWithoutFilter.tsx +1 -1
|
@@ -13901,7 +13901,7 @@ const MultiSelectWithoutFilter = ({
|
|
|
13901
13901
|
const [selectedOptions, setSelectedOptions] = React.useState([]);
|
|
13902
13902
|
React.useEffect(() => {
|
|
13903
13903
|
// Call API only if searchTerm and fetchOptions are defined
|
|
13904
|
-
if (searchTerm && fetchOptions) {
|
|
13904
|
+
if (searchTerm.length >= 3 && fetchOptions) {
|
|
13905
13905
|
fetchOptions(searchTerm);
|
|
13906
13906
|
}
|
|
13907
13907
|
}, [searchTerm]);
|