From b28870033774879645b43d87e033eedf4fa5f76b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Timoth=C3=A9e=20Poussard?= <tpoussard@neogeo.fr>
Date: Wed, 1 Dec 2021 11:55:11 +0100
Subject: [PATCH] fix regression on feature not updated after edition

---
 src/store/modules/feature.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/store/modules/feature.js b/src/store/modules/feature.js
index 4b80d47b..9394dbe5 100644
--- a/src/store/modules/feature.js
+++ b/src/store/modules/feature.js
@@ -168,10 +168,10 @@ const feature = {
 
       function redirect(featureId) {
         dispatch(
-          'GET_PROJECT_FEATURES',
+          'GET_PROJECT_FEATURE',
           {
             project_slug: rootState.project_slug,
-            feature_type__slug: rootState.feature_type.current_feature_type_slug
+            feature_id: featureId
           }
         )
           .then(() => {
-- 
GitLab