Skip to content

Commit

Permalink
fix: breadcrumbs fixed for integrations [WTEL-4391]
Browse files Browse the repository at this point in the history
  • Loading branch information
VladimirBeria committed May 14, 2024
1 parent fd41b93 commit 42d5b2b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/app/router/router.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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,
Expand Down

0 comments on commit 42d5b2b

Please sign in to comment.