Skip to content

Commit

Permalink
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/admin-ui/src/lib/settings/src/settings.routes.ts
Original file line number Diff line number Diff line change
@@ -56,7 +56,7 @@ export const createRoutes = (pageService: PageService): Route[] => [
path: 'channels/:id',
component: PageComponent,
data: {
locationId: 'channel-list',
locationId: 'channel-detail',
breadcrumb: { label: _('breadcrumb.channels'), link: ['../', 'channels'] },
},
children: pageService.getPageTabRoutes('channel-detail'),
@@ -74,7 +74,7 @@ export const createRoutes = (pageService: PageService): Route[] => [
path: 'stock-locations/:id',
component: PageComponent,
data: {
locationId: 'stock-location-list',
locationId: 'stock-location-detail',
breadcrumb: { label: _('breadcrumb.stock-locations'), link: ['../', 'stock-locations'] },
},
children: pageService.getPageTabRoutes('stock-location-detail'),
@@ -92,7 +92,7 @@ export const createRoutes = (pageService: PageService): Route[] => [
path: 'sellers/:id',
component: PageComponent,
data: {
locationId: 'seller-list',
locationId: 'seller-detail',
breadcrumb: { label: _('breadcrumb.sellers'), link: ['../', 'sellers'] },
},
children: pageService.getPageTabRoutes('seller-detail'),

0 comments on commit 4e7bbb1

Please sign in to comment.