From f5e5af391a6583047c64ef8c51642003a79b75cf Mon Sep 17 00:00:00 2001 From: Jakob Borg Date: Sat, 3 Jun 2023 09:58:08 +0200 Subject: [PATCH] gui: Remove HTML support in tooltips --- gui/default/syncthing/core/tooltipDirective.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/gui/default/syncthing/core/tooltipDirective.js b/gui/default/syncthing/core/tooltipDirective.js index 4a79e763f..c21a396d8 100644 --- a/gui/default/syncthing/core/tooltipDirective.js +++ b/gui/default/syncthing/core/tooltipDirective.js @@ -3,9 +3,7 @@ angular.module('syncthing.core') return { restrict: 'A', link: function (scope, element, attributes) { - $(element).tooltip({ - html: 'true' - }); + $(element).tooltip(); } }; });