From a89b4183500c181e0c0c1e46389269f16d5d77c9 Mon Sep 17 00:00:00 2001 From: Ziver Koc Date: Wed, 29 Mar 2023 01:07:41 +0200 Subject: [PATCH] Fixed alerts as strings was not escaped properly --- hal-core/resources/web/js/hal_alert.js | 1 + 1 file changed, 1 insertion(+) diff --git a/hal-core/resources/web/js/hal_alert.js b/hal-core/resources/web/js/hal_alert.js index 7cbedc52..4e475ea4 100644 --- a/hal-core/resources/web/js/hal_alert.js +++ b/hal-core/resources/web/js/hal_alert.js @@ -69,6 +69,7 @@ function updateAlerts() { alertElement.find(".alert-title").html(alert.title); alertElement.find(".alert-description").html(alert.description); + alertElement.find(".timestamp").relTimestamp(); }); }); }