From f918d2ee0b785c5c3f91a86912d412ae0b389892 Mon Sep 17 00:00:00 2001 From: Alexandr Shalaginov Date: Sat, 15 Mar 2025 20:05:48 +0300 Subject: [PATCH] SUPPORT-8957: add method --- .../component/button/UserManagementService.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/frontend/src/ts/account_applications/component/button/UserManagementService.ts b/frontend/src/ts/account_applications/component/button/UserManagementService.ts index 876aa1b2..7269e224 100644 --- a/frontend/src/ts/account_applications/component/button/UserManagementService.ts +++ b/frontend/src/ts/account_applications/component/button/UserManagementService.ts @@ -61,6 +61,11 @@ export class UserManagementService extends Behavior { } } + @Visible() + public setAccountAction(action: AccountAction): void { + this.action = action; + } + private collectData(): any { let jsonObj = {}; let fields: FormField[] = this.button.form.getScriptsInChildren(FormField);