Alerting: Rule edit form (#32877)

This commit is contained in:
Domas
2021-04-14 15:57:36 +03:00
committed by GitHub
parent 727a24c1bb
commit 282c62d8bf
47 changed files with 1378 additions and 499 deletions

View File

@@ -393,10 +393,7 @@ export function getAppRoutes(): RouteDescriptor[] {
path: '/alerting/new',
pageClass: 'page-alerting',
component: SafeDynamicImport(
() =>
import(
/* webpackChunkName: "AlertingRuleForm"*/ 'app/features/alerting/unified/components/rule-editor/AlertRuleForm'
)
() => import(/* webpackChunkName: "AlertingRuleForm"*/ 'app/features/alerting/unified/RuleEditor')
),
},
{
@@ -410,10 +407,7 @@ export function getAppRoutes(): RouteDescriptor[] {
path: '/alerting/:id/edit',
pageClass: 'page-alerting',
component: SafeDynamicImport(
() =>
import(
/* webpackChunkName: "AlertingRuleForm"*/ 'app/features/alerting/unified/components/rule-editor/AlertRuleForm'
)
() => import(/* webpackChunkName: "AlertingRuleForm"*/ 'app/features/alerting/unified/RuleEditor')
),
},
{