createRoutableExtension name added

Signed-off-by: mufaddal motiwala <mufaddalmm.52@gmail.com>
This commit is contained in:
mufaddal motiwala
2021-12-15 19:40:04 +05:30
parent 7e5dcd96c7
commit bb46214031
+2
View File
@@ -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,