minka-ds 0.1.8 → 0.1.9
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/package.json
CHANGED
|
@@ -215,7 +215,7 @@ function FilterCombobox({
|
|
|
215
215
|
|
|
216
216
|
const step2AllValues = selectedCategory?.values ?? []
|
|
217
217
|
|
|
218
|
-
const showSearch = step2AllValues.length > 4
|
|
218
|
+
const showSearch = step2AllValues.length > 4 && selectedCategory?.type !== "hours"
|
|
219
219
|
const step2Filtered = showSearch
|
|
220
220
|
? step2AllValues.filter(v => v.toLowerCase().includes(search.toLowerCase()))
|
|
221
221
|
: step2AllValues
|