Skip to content

Commit

Permalink
Merge pull request #428 from intersective/bigfix/CORE-6586/html-tags-…
Browse files Browse the repository at this point in the history
…are-shown-in-the-delete-message-popup

[CORE-6586] HTML tags are shown in the delete message popup - Prerelease
  • Loading branch information
sasangachathumal authored Jun 6, 2024
2 parents f886c1d + 9fb0ae5 commit 002ef6f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
"@popperjs/core": "^2.11.8",
"@swimlane/ngx-charts": "^20.4.1",
"@swimlane/ngx-datatable": "20.1.0",
"@popperjs/core": "^2.11.8",
"ansi-colors": "^4.1.1",
"apollo-angular": "^4.2.1",
"bootstrap": "5.2.3",
Expand Down
2 changes: 1 addition & 1 deletion src/app/chat/chat-room/chat-room.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -789,7 +789,7 @@ export class ChatRoomComponent {
deleteMessage(messageUuid) {
this.popupService.showAlert({
header: 'Delete Message?',
message: 'Are you sure you want to delete this message.<br/>This action cannot be undone.',
message: 'Are you sure you want to delete this message. This action cannot be undone.',
cssClass: 'message-delete-alert',
buttons: [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ export class ScheduleMessageListComponent implements OnInit {
deleteMessage(messageUuid) {
this.popupService.showAlert({
header: 'Delete Scheduled Message?',
message: 'Are you sure you want to delete this scheduled message.<br/>This action cannot be undone.',
message: 'Are you sure you want to delete this scheduled message. This action cannot be undone.',
cssClass: 'message-delete-alert',
buttons: [
{
Expand Down

0 comments on commit 002ef6f

Please sign in to comment.