We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4a6937 commit 30baeb2Copy full SHA for 30baeb2
1 file changed
assets/js/dashboard/stats/graph/main-graph.tsx
@@ -49,11 +49,11 @@ type MainGraphResponse = {
49
}
50
51
type GraphDatum = {
52
- value: number | null // null when graph is not defined
53
- timeLabel: string | null // null when there's no label
54
- comparisonValue?: number | null // null when comparison is not defined
55
- comparisonTimeLabel?: string | null // null when comparison is not defined
56
- change?: number | null // null when comparison is not defined
+ value: number | null
+ timeLabel: string | null
+ comparisonValue?: number | null
+ comparisonTimeLabel?: string | null
+ change?: number | null
57
58
59
type XPos = number
0 commit comments