From: Sungjin Lee Date: Fri, 13 Sep 2024 05:21:15 +0000 (+0000) Subject: Fix issue of feature group information not visible on dashboard X-Git-Tag: 4.0.0~27 X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=0806f628fb0eddfca6a93423da5057b2c06aa418;p=portal%2Faiml-dashboard.git 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 --- 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 });