From 55386491254868adf4ec41132438d304f5dbf946 Mon Sep 17 00:00:00 2001 From: Nariman Jelveh Date: Tue, 23 Apr 2024 16:25:57 -0700 Subject: [PATCH] Update UIAlert.js --- src/UI/UIAlert.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/UI/UIAlert.js b/src/UI/UIAlert.js index 83b98f36..aa9e95f2 100644 --- a/src/UI/UIAlert.js +++ b/src/UI/UIAlert.js @@ -50,7 +50,7 @@ function UIAlert(options){ // icon h += ``; // message - h += `
${options.message}
`; + h += `
${html_encode(options.message)}
`; // buttons if(options.buttons && options.buttons.length > 0){ h += `
`;