Skip to content

Commit

Permalink
Merge pull request #262 from kac89/dev
Browse files Browse the repository at this point in the history
my-reports select all fix issue
  • Loading branch information
kac89 authored Sep 22, 2023
2 parents 32853e9 + 47febfb commit fefa1e2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/app/myreports/myreports.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ export class MyreportsComponent implements OnInit {
this.indexeddbService.deleteReport(result).then(data => {
if (data) {
this.getallreports();
this.selection.clear()
}
});

Expand All @@ -180,6 +181,7 @@ export class MyreportsComponent implements OnInit {
this.apiService.APISend(result.apiurl, result.apikey, 'removereport', 'reportid=' + result.report_id).then(resp => {
if (resp.REMOVE_REPORT === 'OK') {
this.getallreports();
this.selection.clear()
}
});

Expand Down

0 comments on commit fefa1e2

Please sign in to comment.