From 0806f628fb0eddfca6a93423da5057b2c06aa418 Mon Sep 17 00:00:00 2001 From: Sungjin Lee Date: Fri, 13 Sep 2024 05:21:15 +0000 Subject: [PATCH] Fix issue of feature group information not visible on dashboard - Correction of 'feature-group.js' ISSUE-ID: AIMLFW-156 Change-Id: Ie23e8112038e417cb99f49a75280641179e7a285 Signed-off-by: Sungjin Lee --- src/apis/feature-group.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apis/feature-group.js b/src/apis/feature-group.js index dd4c692..9db74db 100644 --- a/src/apis/feature-group.js +++ b/src/apis/feature-group.js @@ -5,7 +5,7 @@ export const featureGroupAPI = { return await instance.get('/featureGroup'); }, getFeatureGroup: async ({ params }) => { - return await instance.get(`/featureGroups/${params.featureGroupName}`); + return await instance.get(`/featureGroup/${params.featureGroupName}`); }, createFeatureGroup: async ({ data }) => { return await instance.post('/featureGroup', { ...data }); -- 2.16.6