Skip to content

Commit

Permalink
Merge pull request #29 from irohalab/remove-dummy-data
Browse files Browse the repository at this point in the history
remove dummy data used for testing
  • Loading branch information
EverettSummer authored Jan 14, 2024
2 parents 2e1d834 + e46e2ee commit 036cca0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mira-ui",
"version": "2.8.1",
"version": "2.8.2",
"scripts": {
"ng": "ng",
"start": "ng serve",
Expand Down
2 changes: 1 addition & 1 deletion src/app/home/my-history/my-history.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
},
Expand Down

0 comments on commit 036cca0

Please sign in to comment.