Skip to content

Commit 9710c58

Browse files
committed
update reka to latest + fix select hover
1 parent 3721a1e commit 9710c58

3 files changed

Lines changed: 10 additions & 12 deletions

File tree

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
"lodash": "^4.17.21",
7878
"lucide-vue-next": "^0.542.0",
7979
"qs": "^6.6.0",
80-
"reka-ui": "^2.5.0",
80+
"reka-ui": "^2.6.1",
8181
"sortablejs": "^1.15.2",
8282
"tailwind-merge": "^3.3.0",
8383
"text-clipper": "^1.3.0",

resources/js/filters/components/filters/SelectFilter.vue

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,8 @@
7979
:multiple="props.filter.multiple"
8080
highlight-on-hover
8181
>
82-
<template v-if="filter.searchable">
83-
<!-- v-show because otherwise highlight on hover does not work -->
84-
<CommandInput :placeholder="__('sharp::form.multiselect.placeholder')" />
85-
</template>
82+
<!-- v-show because otherwise highlight on hover does not work -->
83+
<CommandInput v-show="filter.searchable" :placeholder="__('sharp::form.multiselect.placeholder')" />
8684

8785
<CommandList class="scroll-pb-12">
8886
<CommandEmpty>{{ __('sharp::form.autocomplete.no_results_text') }}</CommandEmpty>

0 commit comments

Comments
 (0)