We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a9cc6f commit 2f14442Copy full SHA for 2f14442
frontend/src/modules/lf/layout/components/lf-menu-project-group-selection.vue
@@ -140,7 +140,7 @@ const { updateSelectedProjectGroup } = lsSegmentsStore;
140
const searchQuery = ref('');
141
const isPopoverVisible = ref(false);
142
const searchValue = useDebounce(searchQuery, 300);
143
-const isSearchVisible = computed(() => projectGroupsList.value.length > 5);
+const isSearchVisible = computed(() => projectGroupsList.value.length > 5 || searchQuery.value.length > 0);
144
145
let scrollContainer: HTMLElement | null = null;
146
0 commit comments