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

FEAT #10551 TIME 0:10 fix css

parent 9ff908eb
No related branches found
No related tags found
No related merge requests found
......@@ -82,6 +82,7 @@ export class SidebarComponent implements OnInit {
}
filter(mode: string) {
this.loadingList = true;
this.signaturesService.mode === mode ? this.signaturesService.mode = '' : this.signaturesService.mode = mode;
this.offset = 0;
......@@ -89,8 +90,10 @@ export class SidebarComponent implements OnInit {
.subscribe((data: any) => {
this.signaturesService.documentsList = data.documents;
this.signaturesService.documentsListCount = data.count;
this.loadingList = false;
}, (err: any) => {
this.notificationService.handleErrors(err);
this.loadingList = false;
});
}
}
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