From e46e2ee7ab9aecaf7e7e21e3e0e859b2db04ecd5 Mon Sep 17 00:00:00 2001 From: Everett Summer <55684557+EverettSummer@users.noreply.github.com> Date: Sat, 13 Jan 2024 23:52:34 -0800 Subject: [PATCH] remove dummy data used for testing --- package.json | 2 +- src/app/home/my-history/my-history.component.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 4a5a68d..5af8dbd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mira-ui", - "version": "2.8.1", + "version": "2.8.2", "scripts": { "ng": "ng", "start": "ng serve", diff --git a/src/app/home/my-history/my-history.component.ts b/src/app/home/my-history/my-history.component.ts index d5ef042..7792764 100644 --- a/src/app/home/my-history/my-history.component.ts +++ b/src/app/home/my-history/my-history.component.ts @@ -56,7 +56,7 @@ export class MyHistoryComponent implements OnInit, OnDestroy { this._watchService.list_history(offset, this.countPerPage) .subscribe({ next: ({data, total}) => { - this.watchProgressList = data.concat(data).concat(data); + this.watchProgressList = data; this.total = total; this.isLoading = false; },