chore(ui): fix type to match v1.x reality

pull/5898/head
Pavel Zavora 2022-03-24 09:03:17 +01:00
parent 0fa57113a4
commit e146023f4a
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
export type TimeSeriesValue = string | number | null
export type TimeSeriesValue = string | number | boolean | null
export interface TimeSeriesSeries {
name?: string