From 84bd4ab4c82902f20add1d41f23fa9bfb94bb471 Mon Sep 17 00:00:00 2001 From: Julien Corny Date: Tue, 10 Dec 2024 20:04:55 +0100 Subject: [PATCH] fix: reset warning value when exiting tab9 --- frontend/app/zh-forms/tabs/tab9/zh-form-tab9.component.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/app/zh-forms/tabs/tab9/zh-form-tab9.component.ts b/frontend/app/zh-forms/tabs/tab9/zh-form-tab9.component.ts index 76ee040b..7fe8878b 100755 --- a/frontend/app/zh-forms/tabs/tab9/zh-form-tab9.component.ts +++ b/frontend/app/zh-forms/tabs/tab9/zh-form-tab9.component.ts @@ -51,5 +51,6 @@ export class ZhFormTab9Component implements OnInit { ngOnDestroy() { if (this.$_getTabChangeSub) this.$_getTabChangeSub.unsubscribe(); if (this.$_currentZhSub) this.$_currentZhSub.unsubscribe(); + this.hierarchy.warning = ''; } }