From bca8967d9b9d261e08260050f0ee1d6b17dbbcf4 Mon Sep 17 00:00:00 2001
From: "hamza.hramchi" <hamza.hramchi@xelians.fr>
Date: Tue, 30 Mar 2021 17:35:16 +0200
Subject: [PATCH] FEAT #16648 TIME 0 rm duplicate line

---
 src/frontend/app/sidebar/sidebar.component.ts | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/frontend/app/sidebar/sidebar.component.ts b/src/frontend/app/sidebar/sidebar.component.ts
index a118d0d34d..ce4afa2aa2 100755
--- a/src/frontend/app/sidebar/sidebar.component.ts
+++ b/src/frontend/app/sidebar/sidebar.component.ts
@@ -58,7 +58,6 @@ export class SidebarComponent implements OnInit, AfterViewInit {
         this.subscription = this.actionsService.catchEvent().subscribe((result: any[]) => {
             let mode: any = result.filter((item: any) => item.userId === this.authService.user.id).map((el: any) => el.mode);
             mode = [... new Set(mode)].toString();
-            this.signaturesService.mode = mode;
             this.filter(mode);
             this.signaturesService.mode = mode;
         });
-- 
GitLab