XYChart: Coerce threshold steps to numbers (#104485)

This commit is contained in:
Leon Sorokin
2025-04-24 20:01:00 +01:00
committed by GitHub
parent 5a10e3b43e
commit a6735721bf
+2 -1
View File
@@ -641,7 +641,8 @@ function fieldValueColors(f: Field, theme: GrafanaTheme2): FieldColorValues {
let lasti = steps.length - 1;
for (let i = lasti; i > 0; i--) {
conds += `v >= ${steps[i].value} ? ${i} : `;
let rhs = Number(steps[i].value);
conds += `v >= ${rhs} ? ${i} : `;
}
conds += '0';