diff --git a/public/app/directives/tip.js b/public/app/directives/tip.js index edf57d47828..8553faad279 100644 --- a/public/app/directives/tip.js +++ b/public/app/directives/tip.js @@ -72,12 +72,7 @@ function (angular, kbn) { ' ng-checked="' + attrs.model + '">' + ' '; - if (attrs.position === "front") { - template = label + template; - } else { - template = template + label; - } - + template = label + template; elem.replaceWith($compile(angular.element(template))(scope)); } };