diff --git a/src/app/components/creator/_dialogs/comment-settings/comment-settings.component.ts b/src/app/components/creator/_dialogs/comment-settings/comment-settings.component.ts index d65c9d970c17baa93c5b2eaf94f164c18a80af46..fa16a53ce10796360f25b31ee629991cf49ad5cb 100644 --- a/src/app/components/creator/_dialogs/comment-settings/comment-settings.component.ts +++ b/src/app/components/creator/_dialogs/comment-settings/comment-settings.component.ts @@ -129,7 +129,7 @@ export class CommentSettingsComponent implements OnInit { csv = keyFields + valueFields; const myBlob = new Blob([csv], { type: 'text/csv' }); const link = document.createElement('a'); - const fileName = 'comments_' + date + '.csv'; + const fileName = this.editRoom.name + '_' + this.editRoom.shortId + '_' + date + '.csv'; link.setAttribute('download', fileName); link.href = window.URL.createObjectURL(myBlob); link.click();