apply security patch: release-11.5.4/379-202504030825.patch

commit deaee13004775ae589adb374666cc07bab17f114
Author: nmarrs <nathanielmarrs@gmail.com>
Date:   Thu Apr 3 09:22:04 2025 +0100

    backport commit
release-11.5.4+security-01 v11.5.4
github-actions[bot] 2 months ago
parent a659da6b1d
commit f974c99f30
  1. 3
      public/app/plugins/panel/xychart/scatter.ts

@ -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';

Loading…
Cancel
Save