From 028e3578dbbde98fdb5a4d170f0e1dce7a8a2ab4 Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Wed, 13 Aug 2025 15:38:20 +0200 Subject: syz-cluster/dashboard: html escape modal content Otherwise we sometimes display broken data. --- syz-cluster/dashboard/templates/series.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syz-cluster/dashboard/templates/series.html b/syz-cluster/dashboard/templates/series.html index 31eaebc8f..c53015be4 100644 --- a/syz-cluster/dashboard/templates/series.html +++ b/syz-cluster/dashboard/templates/series.html @@ -27,7 +27,7 @@ body.html("") body.load(url, function(response, status, xhr){ if (status == "success") { - body.html("
" + response + "
") + body.html($('
').text(response))
                   }
                   $('#contentModal').modal('show');
               });
-- 
cgit mrf-deployment