From 920e5c93e1360efb6c1bd93ddc2a1ef35b2bcd5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Wed, 8 Oct 2014 17:00:07 -0400 Subject: [PATCH] Graph: tooltip fix for single series tooltip and right floated value being pushed down --- src/app/directives/grafanaGraph.tooltip.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/directives/grafanaGraph.tooltip.js b/src/app/directives/grafanaGraph.tooltip.js index 3e263a392de..aa5b2abfa42 100644 --- a/src/app/directives/grafanaGraph.tooltip.js +++ b/src/app/directives/grafanaGraph.tooltip.js @@ -161,7 +161,7 @@ function ($) { value = series.formatValue(value); timestamp = dashboard.formatDate(item.datapoint[0]); - group += ': ' + value + ''; + group += ': ' + value + '
'; self.showTooltip(timestamp, group, pos); }