From 19f6419027bf50ee61e1646e493c65dd69c2e80f Mon Sep 17 00:00:00 2001 From: "konstantina.galouni" Date: Thu, 6 Jul 2023 16:06:01 +0300 Subject: [PATCH] [Monitor | develop]: [Bug fix] home.component.ts: In ngOnDestroy, set quickContactService.setDisplay(true) - true is the default value. --- src/app/home/home.component.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/home/home.component.ts b/src/app/home/home.component.ts index c732c3c..281b04a 100644 --- a/src/app/home/home.component.ts +++ b/src/app/home/home.component.ts @@ -130,6 +130,7 @@ export class HomeComponent implements OnInit, OnDestroy, AfterViewInit, IDeactiv } ngOnDestroy() { + this.quickContactService.setDisplay(true); this.clear(); }