From 3e2c898881447e09d4f2d7abefc2d5cabe491f85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Wed, 12 Nov 2014 13:40:22 +0100 Subject: [PATCH] Graph: legend fix for current legend value --- src/app/panels/graph/legend.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/panels/graph/legend.js b/src/app/panels/graph/legend.js index 8c9cd3fad3f..f1367df8617 100644 --- a/src/app/panels/graph/legend.js +++ b/src/app/panels/graph/legend.js @@ -147,7 +147,7 @@ function (angular, app, _, kbn, $) { if (panel.legend.min) { html += '
' + min + '
'; } if (panel.legend.max) { html += '
' + max + '
'; } if (panel.legend.avg) { html += '
' + avg + '
'; } - if (panel.legend.current) { html += '
' + current + '
'; } + if (panel.legend.current) { html += '
' + current + '
'; } if (panel.legend.total) { html += '
' + total + '
'; } }