Browse Source

fix(admin-ui): Fix id of customer groups list

Fixes #2894
Michael Bromley 1 year ago
parent
commit
33780ce191
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/admin-ui/src/lib/customer/src/customer.routes.ts

+ 1 - 1
packages/admin-ui/src/lib/customer/src/customer.routes.ts

@@ -25,7 +25,7 @@ export const createRoutes = (pageService: PageService): Route[] => [
         path: 'groups',
         component: PageComponent,
         data: {
-            locationId: 'customer-detail',
+            locationId: 'customer-group-list',
             breadcrumb: _('breadcrumb.customer-groups'),
         },
         children: pageService.getPageTabRoutes('customer-group-list'),