Skip to content

Commit 247157e

Browse files
committed
Fix type check
1 parent 9f99be8 commit 247157e

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

x-pack/examples/alerting_example/public/alert_types/always_firing.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ export function getAlertType(): AlertTypeModel {
2222
name: 'Always Fires',
2323
description: 'Alert when called',
2424
iconClass: 'bolt',
25+
documentationUrl: null,
2526
alertParamsExpression: AlwaysFiringExpression,
2627
validate: (alertParams: AlwaysFiringParamsProps['alertParams']) => {
2728
const { instances } = alertParams;

x-pack/examples/alerting_example/public/alert_types/astros.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ export function getAlertType(): AlertTypeModel {
4747
name: 'People Are In Space Right Now',
4848
description: 'Alert when people are in space right now',
4949
iconClass: 'globe',
50+
documentationUrl: null,
5051
alertParamsExpression: PeopleinSpaceExpression,
5152
validate: (alertParams: PeopleinSpaceParamsProps['alertParams']) => {
5253
const { outerSpaceCapacity, craft, op } = alertParams;

x-pack/test/functional_with_es_ssl/fixtures/plugins/alerts/public/plugin.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ export class AlertingFixturePlugin implements Plugin<Setup, Start, AlertingExamp
3131
name: 'Test Always Firing',
3232
description: 'Always fires',
3333
iconClass: 'alert',
34+
documentationUrl: null,
3435
alertParamsExpression: () => React.createElement('div', null, 'Test Always Firing'),
3536
validate: () => {
3637
return { errors: {} };
@@ -43,6 +44,7 @@ export class AlertingFixturePlugin implements Plugin<Setup, Start, AlertingExamp
4344
name: 'Test Noop',
4445
description: `Doesn't do anything`,
4546
iconClass: 'alert',
47+
documentationUrl: null,
4648
alertParamsExpression: () => React.createElement('div', null, 'Test Noop'),
4749
validate: () => {
4850
return { errors: {} };

0 commit comments

Comments
 (0)