Skip to content

Commit

Permalink
Merge pull request #227 from abes-esr/develop
Browse files Browse the repository at this point in the history
THE-1298 FIX suppression du double menu de suggestion sur chrome
  • Loading branch information
clementdelafontaine authored May 7, 2024
2 parents dc31791 + dc45eac commit 5b779fc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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

0 comments on commit 5b779fc

Please sign in to comment.