From bb46214031e4ed6dd70015136aa85bc80ca05986 Mon Sep 17 00:00:00 2001 From: mufaddal motiwala Date: Wed, 15 Dec 2021 19:40:04 +0530 Subject: [PATCH] createRoutableExtension name added Signed-off-by: mufaddal motiwala --- plugins/newrelic-dashboard/src/plugin.ts | 2 ++ 1 file changed, 2 insertions(+) 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,