Skip to content
Snippets Groups Projects
Commit b75e5679 authored by Lukas Mauß's avatar Lukas Mauß
Browse files

Fix comment export

parent 8f927f68
Branches
Tags
1 merge request!388Fix comment export
Pipeline #30248 passed with stages
in 9 minutes and 7 seconds
...@@ -87,7 +87,7 @@ export class CommentSettingsComponent implements OnInit { ...@@ -87,7 +87,7 @@ export class CommentSettingsComponent implements OnInit {
} }
exportCsv(delimiter: string, date: string): void { exportCsv(delimiter: string, date: string): void {
this.commentService.getComments(this.roomId) this.commentService.getAckComments(this.roomId)
.subscribe(comments => { .subscribe(comments => {
this.comments = comments; this.comments = comments;
const exportComments = JSON.parse(JSON.stringify(this.comments)); const exportComments = JSON.parse(JSON.stringify(this.comments));
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment