Skip to content

Commit 197046a

Browse files
committed
fix type
1 parent 5f31422 commit 197046a

File tree

1 file changed

+1
-1
lines changed
  • x-pack/plugins/uptime/common/runtime_types/monitor

1 file changed

+1
-1
lines changed

x-pack/plugins/uptime/common/runtime_types/monitor/state.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import * as t from 'io-ts';
99
export const CheckMonitorType = t.intersection([
1010
t.partial({
1111
name: t.string,
12-
ip: t.union([t.array(t.string), t.string]),
12+
ip: t.union([t.array(t.union([t.string, t.null])), t.string]),
1313
}),
1414
t.type({
1515
status: t.string,

0 commit comments

Comments
 (0)