From fbd400d2794515973dd7bdf989d2592d1441b88d Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 17 Jan 2024 19:12:41 +0300 Subject: [PATCH] Fix Bug 65941 --- apps/spreadsheeteditor/main/app/view/FormatSettingsDialog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/spreadsheeteditor/main/app/view/FormatSettingsDialog.js b/apps/spreadsheeteditor/main/app/view/FormatSettingsDialog.js index b84aff8255..8e06ab2a42 100644 --- a/apps/spreadsheeteditor/main/app/view/FormatSettingsDialog.js +++ b/apps/spreadsheeteditor/main/app/view/FormatSettingsDialog.js @@ -239,7 +239,7 @@ define([ el: $('#format-settings-list-code'), store: new Common.UI.DataViewStore(), tabindex: 1, - itemTemplate: _.template('
<%= value %>
') + itemTemplate: _.template('
<%= Common.Utils.String.htmlEncode(value) %>
') }); this.codesList.on('item:select', _.bind(this.onCodeSelect, this)); this.codesList.on('entervalue', _.bind(this.onPrimary, this));