Skip to content

Commit

Permalink
Merge pull request #665 from webitel/fix/integrations-header-path
Browse files Browse the repository at this point in the history
fix: breadcrumbs fixed for integrations [WTEL-4391]
  • Loading branch information
VladimirBeria authored May 15, 2024
2 parents fd41b93 + 42d5b2b commit 100f17a
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 100f17a

Please sign in to comment.