Skip to content

Commit 92806a3

Browse files
r-farkhutdinovRuslan Farkhutdinov
andauthored
Chat: Replace html() with text() in confirmation popup component (DevExpress#30288)
Co-authored-by: Ruslan Farkhutdinov <[email protected]>
1 parent 91f55d0 commit 92806a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/devextreme/js/__internal/ui/chat/confirmationpopup.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class ConfirmationPopup {
5555
_getPopupConfig(): PopupProperties {
5656
const messageId = new Guid().toString();
5757
const $message = $('<div>')
58-
.html(messageLocalization.format('dxChat-editingDeleteConfirmText'))
58+
.text(messageLocalization.format('dxChat-editingDeleteConfirmText'))
5959
.attr('id', messageId);
6060

6161
return extend({

0 commit comments

Comments
 (0)