Skip to content
Snippets Groups Projects
Verified Commit 05a9d74a authored by Alex ORLUC's avatar Alex ORLUC
Browse files

FEAT #9906 rm console.log

parent 5b5124a0
No related branches found
No related tags found
No related merge requests found
...@@ -28,7 +28,6 @@ export class AttachmentsListComponent implements OnInit { ...@@ -28,7 +28,6 @@ export class AttachmentsListComponent implements OnInit {
this.loading = true; this.loading = true;
this.http.get("../../rest/resources/" + this.resIds[0] + "/attachments") this.http.get("../../rest/resources/" + this.resIds[0] + "/attachments")
.subscribe((data: any) => { .subscribe((data: any) => {
console.log(data);
this.attachments = data.attachments; this.attachments = data.attachments;
this.attachments.forEach((element: any) => { this.attachments.forEach((element: any) => {
element.thumbnailUrl = '../../rest/res/' + this.resIds[0] + '/attachments/' + element.res_id + '/thumbnail'; element.thumbnailUrl = '../../rest/res/' + this.resIds[0] + '/attachments/' + element.res_id + '/thumbnail';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment