Fixed alerts as strings was not escaped properly

This commit is contained in:
Ziver Koc 2023-03-29 01:07:41 +02:00
parent 2dec5c1a05
commit a89b418350

View file

@ -69,6 +69,7 @@ function updateAlerts() {
alertElement.find(".alert-title").html(alert.title);
alertElement.find(".alert-description").html(alert.description);
alertElement.find(".timestamp").relTimestamp();
});
});
}