From 42d5b2bfe18b00115fa50bb90d94db1c59e4f5b0 Mon Sep 17 00:00:00 2001 From: volodymyr Date: Tue, 14 May 2024 18:18:12 +0300 Subject: [PATCH] fix: breadcrumbs fixed for integrations [WTEL-4391] --- src/app/router/router.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/router/router.js b/src/app/router/router.js index db992ef59..1bfa7b225 100755 --- a/src/app/router/router.js +++ b/src/app/router/router.js @@ -573,13 +573,13 @@ const router = createRouter({ beforeEnter: checkRouteAccess, }, { - path: '/integrations/cognitive-profile/new', + path: '/integrations/cognitive-profiles/new', name: `${RouteNames.COGNITIVE_PROFILES}-new`, component: OpenedCognitiveProfile, beforeEnter: checkRouteAccess, }, { - path: '/integrations/cognitive-profile/:id', + path: '/integrations/cognitive-profiles/:id', name: `${RouteNames.COGNITIVE_PROFILES}-edit`, component: OpenedCognitiveProfile, beforeEnter: checkRouteAccess, @@ -591,13 +591,13 @@ const router = createRouter({ beforeEnter: checkRouteAccess, }, { - path: '/integrations/email-profile/new', + path: '/integrations/email-profiles/new', name: `${RouteNames.EMAIL_PROFILES}-new`, component: OpenedEmailProfile, beforeEnter: checkRouteAccess, }, { - path: '/integrations/email-profile/:id', + path: '/integrations/email-profiles/:id', name: `${RouteNames.EMAIL_PROFILES}-edit`, component: OpenedEmailProfile, beforeEnter: checkRouteAccess,