gui: Remove HTML support in tooltips

This commit is contained in:
Jakob Borg 2023-06-03 09:58:08 +02:00
parent 5a3ac86c3f
commit f5e5af391a
1 changed files with 1 additions and 3 deletions

View File

@ -3,9 +3,7 @@ angular.module('syncthing.core')
return {
restrict: 'A',
link: function (scope, element, attributes) {
$(element).tooltip({
html: 'true'
});
$(element).tooltip();
}
};
});