apply security patch: release-11.4.4/383-202504030856.patch

commit e1f617a76ef70ab1684fed4df21480665be83c03
Author: nmarrs <nathanielmarrs@gmail.com>
Date:   Thu Apr 3 09:54:43 2025 +0100

    apply backport
release-11.4.4+security-01 v11.4.4
github-actions[bot] 2 months ago
parent 1c7de19702
commit 284f22d41b
  1. 3
      public/app/plugins/panel/xychart/v2/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