apply security patch: release-11.2.9/381-202504030850.patch

commit b40a8378d4c42bf3b44951fef9401cfa3e522560
Author: nmarrs <nathanielmarrs@gmail.com>
Date:   Thu Apr 3 09:44:49 2025 +0100

    apply backport
This commit is contained in:
github-actions[bot]
2025-04-22 18:21:28 +00:00
parent c4b3fe8f28
commit fb8d855e4c
@@ -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';