From a2ca4cbf3cc5a39c0be76c749988dfafc1093f9e Mon Sep 17 00:00:00 2001
From: DESPRES Damien <ddespres@neogeo.fr>
Date: Tue, 30 Nov 2021 11:37:48 +0100
Subject: [PATCH] fix #12481

---
 src/store/modules/feature.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/store/modules/feature.js b/src/store/modules/feature.js
index 6db7f1af..d081b0b6 100644
--- a/src/store/modules/feature.js
+++ b/src/store/modules/feature.js
@@ -108,7 +108,7 @@ const feature = {
   
       const cancelToken = axios.CancelToken.source();
       commit('SET_CANCELLABLE_SEARCH_REQUEST', cancelToken, { root: true });
-
+      commit("SET_FEATURES", []);
       let url = `${rootState.configuration.VUE_APP_DJANGO_API_BASE}projects/${project_slug}/feature/`;
       if (feature_type__slug) {
         url = url.concat('', `${url.includes('?') ? '&' : '?'}feature_type__slug=${feature_type__slug}`);
-- 
GitLab