From 9ca7df27347c79e275a44abc99afe6b19c266744 Mon Sep 17 00:00:00 2001 From: bach Date: Thu, 15 Jun 2023 22:44:35 +0200 Subject: [PATCH] =?UTF-8?q?#2079=20Supprimer=20l=E2=80=99affichage=20des?= =?UTF-8?q?=20filtres=20de=20recherche=20quand=20on=20ferme=20le=20tiroir?= =?UTF-8?q?=20de=20recherche?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/nav/Search.vue | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/src/components/nav/Search.vue b/src/components/nav/Search.vue index a2b38b3..b9339ec 100644 --- a/src/components/nav/Search.vue +++ b/src/components/nav/Search.vue @@ -37,7 +37,7 @@ title="chargement" /> -
+
-
+
-
+
-
+
({ }), computed: { + // searchOpened: { + // get () { return this.$store.state.Search.opened }, + // set (value) { this.$store.commit('Search/setOpened', value) } + // }, ...mapState({ isloading: state => state.Search.isloading, searchTypeOptions: state => state.Search.searchTypeOptions, searchTypeValue: state => state.Search.searchTypeValue, filters: state => state.Search.filters, activeFilters: state => state.Search.activeFilters, + searchOpened: state => state.Search.opened, corpusLoaded: state => state.Corpus.corpusLoaded, results: state => state.Corpus.results }),