From de16cb69fe7c1057c586befcd67b8fffa122c79c Mon Sep 17 00:00:00 2001 From: AlexSanchez-bit Date: Thu, 30 Apr 2026 11:13:07 -0400 Subject: [PATCH] fix[frontend](settings): sending email configuration parameters on check --- .../config/app-config-sections/app-config-sections.component.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/app/shared/components/utm/config/app-config-sections/app-config-sections.component.ts b/frontend/src/app/shared/components/utm/config/app-config-sections/app-config-sections.component.ts index 37e534dd7..80264c43f 100644 --- a/frontend/src/app/shared/components/utm/config/app-config-sections/app-config-sections.component.ts +++ b/frontend/src/app/shared/components/utm/config/app-config-sections/app-config-sections.component.ts @@ -68,6 +68,7 @@ export class AppConfigSectionsComponent implements OnInit, OnDestroy { .subscribe(response => { this.loading = false; this.configs = response.body; + this.configToSave=this.configs this.validConfigSection.emit(this.checkConfigValid()); }, error => { this.toastService.showError('Error', 'Error getting application configurations');