Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

THE-1298 FIX suppression du double menu de suggestion sur chrome #227

Merged
merged 1 commit into from
May 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions components/personnes/search/SearchBar.vue
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<template>
<div class="searchbar">
<v-combobox role="search" class="searchbar__input" label="Rechercher des personnes, par nom ou par domaine d’expertise"
:items="suggestions" :menu-props="menuProps"
:items="suggestions" :menu-props="menuProps" hide-no-data
:no-data-text="isSuggestionLoading ? $t('personnes.searchBar.loading') : $t('personnes.searchBar.noData')"
v-model="request" v-model:search="requestSearch" variant="outlined" cache-items hide-details hide-selected
no-filter density="compact" return-object type="text" menu-icon="" @keydown.enter="search"
:loading="isSuggestionLoading" enterkeyhint="send" ref="comboboxElement" id="searchbar">
:loading="isSuggestionLoading" enterkeyhint="send" ref="comboboxElement" id="searchbar" autocomplete="off">
<!-- Bouton rechercher-->
<!-- Bouton effacer texte-->
<template v-slot:append-inner>
Expand Down
2 changes: 1 addition & 1 deletion components/theses/search/SearchBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<v-combobox role="search" v-if="!isAdvanced" class="searchbar__input" label="Rechercher des thèses" :items="items"
:menu="suggestionActive" :menu-props="menuProps" v-model="request" v-model:search="requestSearch" variant="outlined" base-color="primary"
cache-items hide-details hide-no-data hide-selected no-filter density="compact" return-object type="text"
menu-icon="" @keydown.enter="search" enterkeyhint="send" ref="targetElement" id="searchbar">
menu-icon="" @keydown.enter="search" enterkeyhint="send" ref="targetElement" id="searchbar" autocomplete="off">
<!-- Bouton rechercher-->
<!-- Bouton effacer texte-->
<template v-slot:append-inner>
Expand Down
Loading