Skip to content

Commit

Permalink
- Reldens - v4.0.0 - Escape HTML fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
damian-pastorini committed Jul 23, 2024
1 parent bfb55c5 commit 351d4cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion theme/admin/reldens-admin-client.js
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ window.addEventListener('DOMContentLoaded', () => {
if(shuttingDownTimeElement){
let shuttingDownTime = shuttingDownTimeElement.getAttribute('data-shutting-down-time');
if(shuttingDownTime){
shuttingDownTimeElement.innerHTML = shuttingDownTime+'s';
shuttingDownTimeElement.innerHTML = escapeHTML(shuttingDownTime)+'s';
shuttingDownTime = Number(shuttingDownTime);
let shuttingDownTimer = setInterval(
() => {
Expand Down

0 comments on commit 351d4cb

Please sign in to comment.