From cb63344394c7048bb44153b16695588a7bf36d40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Tue, 2 Jun 2015 19:51:12 +0200 Subject: [PATCH] Added hover tooltip for tags --- public/app/directives/variableValueSelect.js | 2 +- .../features/dashboard/partials/variableValueSelect.html | 8 +++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/public/app/directives/variableValueSelect.js b/public/app/directives/variableValueSelect.js index 2ddb0dd932c..94984977c7a 100644 --- a/public/app/directives/variableValueSelect.js +++ b/public/app/directives/variableValueSelect.js @@ -93,7 +93,7 @@ function (angular, app, _) { tagValuesPromise.then(function(values) { tag.values = values; - tag.valuesText = values.join(', '); + tag.valuesText = values.join(' + '); _.each(vm.options, function(option) { if (_.indexOf(tag.values, option.value) !== -1) { option.selected = tag.selected; diff --git a/public/app/features/dashboard/partials/variableValueSelect.html b/public/app/features/dashboard/partials/variableValueSelect.html index 25d220ab3a5..2c291448573 100644 --- a/public/app/features/dashboard/partials/variableValueSelect.html +++ b/public/app/features/dashboard/partials/variableValueSelect.html @@ -1,9 +1,11 @@