Fix Bug 65941

This commit is contained in:
Julia Radzhabova
2024-01-17 19:12:41 +03:00
parent b6633aba91
commit fbd400d279

View File

@ -239,7 +239,7 @@ define([
el: $('#format-settings-list-code'),
store: new Common.UI.DataViewStore(),
tabindex: 1,
itemTemplate: _.template('<div id="<%= id %>" class="list-item" style="pointer-events:none;overflow: hidden; text-overflow: ellipsis;"><%= value %></div>')
itemTemplate: _.template('<div id="<%= id %>" class="list-item" style="pointer-events:none;overflow: hidden; text-overflow: ellipsis;"><%= Common.Utils.String.htmlEncode(value) %></div>')
});
this.codesList.on('item:select', _.bind(this.onCodeSelect, this));
this.codesList.on('entervalue', _.bind(this.onPrimary, this));