gui: Remove HTML support in tooltips

This commit is contained in:
Jakob Borg 2023-06-03 09:58:08 +02:00
parent e136d11dce
commit be5961f59b
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();
}
};
});