Skip to content

Commit 3ae658a

Browse files
authored
Merge pull request #124 from Sigurd3K/scalarfiltersettingtype
UP-1645 Fix duration typing
2 parents bf38d4e + 38acfdd commit 3ae658a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

web/main.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,8 @@ export interface OptionFilterSetting extends FilterSetting {
146146
}
147147

148148
export interface ScalarFilterSetting<T> extends FilterSetting {
149-
minimum: T,
150-
maximum: T,
149+
minimum: T | null,
150+
maximum: T | null,
151151
method: 'scalar',
152152
dataType: 'number'|'date'|'datetime'
153153
}

0 commit comments

Comments
 (0)