Core: Update thema, cuetsy and cue fork (#71527)

* Update cue fork

* Update dashboard schema

* Fix lint
This commit is contained in:
Selene
2023-07-13 16:29:38 +02:00
committed by GitHub
parent 4e57726e96
commit e9e2d9ff83
5 changed files with 20 additions and 20 deletions

View File

@@ -612,13 +612,13 @@ type RangeMap struct {
// Range to match against and the result to apply when the value is within the range
Options struct {
// Min value of the range. It can be null which means -Infinity
From *float32 `json:"from"`
From *float64 `json:"from"`
// Result used as replacement with text and color when the value matches
Result ValueMappingResult `json:"result"`
// Max value of the range. It can be null which means +Infinity
To *float32 `json:"to"`
To *float64 `json:"to"`
} `json:"options"`
Type RangeMapType `json:"type"`
}