From 8812ad0e1cc2110f307646f14942053a0376356d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20Mau=C3=9F?= <lukas.mauss@mni.thm.de> Date: Thu, 29 Nov 2018 20:02:48 +0100 Subject: [PATCH] Remove useless test data --- .../shared/list-statistic/list-statistic.component.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/app/components/shared/list-statistic/list-statistic.component.ts b/src/app/components/shared/list-statistic/list-statistic.component.ts index 4d569abc9..de4cd5feb 100644 --- a/src/app/components/shared/list-statistic/list-statistic.component.ts +++ b/src/app/components/shared/list-statistic/list-statistic.component.ts @@ -24,7 +24,6 @@ export class ListStatisticComponent implements OnInit { @Input() contentGroup: ContentGroup; contents: Content[] = []; - percents: number[] = []; displayedColumns = ['content', 'percentage']; dataSource: ContentPercents[]; total = 0; @@ -37,7 +36,6 @@ export class ListStatisticComponent implements OnInit { } ngOnInit() { - this.percents = [73, 87, 69, 92, 77]; this.contentService.getContentChoiceByIds(this.contentGroup.contentIds).subscribe(contents => { this.getContents(contents); }); -- GitLab