From 7f5b74d34c8257a6e7b49c7964e4410bb5db2149 Mon Sep 17 00:00:00 2001 From: Vladyslav_Prykhodko Date: Fri, 25 Aug 2023 15:43:58 +0300 Subject: [PATCH] UI: Fixed show exit dialog twice --- .../components/dashboard-page/dashboard-page.component.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ui-ngx/src/app/modules/home/components/dashboard-page/dashboard-page.component.ts b/ui-ngx/src/app/modules/home/components/dashboard-page/dashboard-page.component.ts index 868b1544c3..f3e57a9dcb 100644 --- a/ui-ngx/src/app/modules/home/components/dashboard-page/dashboard-page.component.ts +++ b/ui-ngx/src/app/modules/home/components/dashboard-page/dashboard-page.component.ts @@ -161,12 +161,14 @@ import { HasDirtyFlag } from '@core/guards/confirm-on-exit.guard'; }) export class DashboardPageComponent extends PageComponent implements IDashboardController, HasDirtyFlag, OnInit, AfterViewInit, OnDestroy { + private forcePristine = true; + get isDirty(): boolean { - return this.isEdit; + return this.isEdit && this.forcePristine; } set isDirty(value: boolean) { - + this.forcePristine = value; } authState: AuthState = getCurrentAuthState(this.store);