We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ae03fc commit 55128b3Copy full SHA for 55128b3
1 file changed
src/components/Explorer.vue
@@ -2689,10 +2689,18 @@ export default {
2689
this.filtersOpen = false;
2690
},
2691
applyDrawerFilters() {
2692
- // Apply current filterValues without changing activeSearch/q semantics.
+ // Match desktop behavior: if user typed trigger words / search text, confirm it on Apply.
2693
+ const queryText = (this.q || "").trim();
2694
+ if (queryText) {
2695
+ this.handleSearchSubmit();
2696
+ return;
2697
+ }
2698
+ // Otherwise, apply current filterValues without changing activeSearch semantics.
2699
this.showAutocomplete = false;
2700
this.submit();
- this.filtersOpen = false;
2701
+ if (!this.isDesktop()) {
2702
+ this.filtersOpen = false;
2703
2704
2705
onFiltersKeydown(event) {
2706
if (!this.filtersOpen) return;
0 commit comments