Skip to content

Commit

Permalink
web-app: Change sticky toasts to expiring
Browse files Browse the repository at this point in the history
  • Loading branch information
bennettpeter committed Jun 11, 2023
1 parent 57a98aa commit 25b6300
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -177,7 +177,7 @@ export class RecordingsComponent implements OnInit {
this.messageService.add({
severity: severity, summary: text,
detail: action + ' ' + this.program.Title + ' ' + this.program.SubTitle + extraText,
sticky: true
life: 3000
// contentStyleClass: 'recsmsg'
});
}
Expand Down
Expand Up @@ -173,7 +173,7 @@ export class VideosComponent implements OnInit {
this.messageService.add({
severity: severity, summary: text,
detail: action + ' ' + this.video.Title + ' ' + this.video.SubTitle + extraText,
sticky: true,
life: 3000,
// contentStyleClass: 'recsmsg'
});
}
Expand Down

0 comments on commit 25b6300

Please sign in to comment.