Skip to content

Commit

Permalink
fix sanitization for 1353
Browse files Browse the repository at this point in the history
  • Loading branch information
manthan-sharma-23 authored and DonnieBLT committed Oct 31, 2023
1 parent 770242a commit 4500aa9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/static/vendor/bootstrap/js/bootstrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -1576,7 +1576,7 @@ function sanitizeSelector(selector) {

Tooltip.prototype.setContent = function () {
var $tip = this.tip()
var title = this.getTitle()
var title = escapeHTML(this.getTitle())

$tip.find('.tooltip-inner')[this.options.html ? 'html' : 'text'](title)
$tip.removeClass('fade in top bottom left right')
Expand Down

0 comments on commit 4500aa9

Please sign in to comment.