From f423ad77f3c33f60eaf0bd58b6634b062460696f Mon Sep 17 00:00:00 2001 From: FreddleSpl0it Date: Tue, 21 Nov 2023 08:49:18 +0100 Subject: [PATCH] [Web] escape quarantine html --- data/web/js/site/quarantine.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/data/web/js/site/quarantine.js b/data/web/js/site/quarantine.js index 8d7f2225..fbf4fe86 100644 --- a/data/web/js/site/quarantine.js +++ b/data/web/js/site/quarantine.js @@ -220,7 +220,7 @@ jQuery(function($){ if (value.score > 0) highlightClass = 'negative'; else if (value.score < 0) highlightClass = 'positive'; else highlightClass = 'neutral'; - $('#qid_detail_symbols').append('' + value.name + ' (' + value.score + ')'); + $('#qid_detail_symbols').append('' + value.name + ' (' + value.score + ')'); }); $('[data-bs-toggle="tooltip"]').tooltip(); } @@ -295,3 +295,7 @@ jQuery(function($){ $(".table_collapse_option").hide(); } }); + + + +