diff --git a/plugins/newrelic-dashboard/src/plugin.ts b/plugins/newrelic-dashboard/src/plugin.ts index 1af533332b..5106821fd7 100644 --- a/plugins/newrelic-dashboard/src/plugin.ts +++ b/plugins/newrelic-dashboard/src/plugin.ts @@ -43,6 +43,7 @@ export const newRelicDashboardPlugin = createPlugin({ export const EntityNewRelicDashboard = newRelicDashboardPlugin.provide( createRoutableExtension({ + name: 'EntityNewRelicDashboardPage', component: () => import('./Router').then(m => m.Router), mountPoint: rootRouteRef, }), @@ -50,6 +51,7 @@ export const EntityNewRelicDashboard = newRelicDashboardPlugin.provide( export const EntityPageNewRelicDashboard = newRelicDashboardPlugin.provide( createRoutableExtension({ + name: 'EntityNewRelicDashboardListComponent', component: () => import('./components/NewRelicDashboard/DashboardEntityList').then( m => m.DashboardEntityList,