From e4b73229508608affeeb55aff63840eb9037ed9e Mon Sep 17 00:00:00 2001 From: Jeremy-Z Date: Wed, 14 Jan 2026 14:33:41 -0500 Subject: [PATCH] Added additional client name value (full client name) --- src/layouts/entry-page/entry-page.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/layouts/entry-page/entry-page.vue b/src/layouts/entry-page/entry-page.vue index 455e6c6f..30c8b276 100644 --- a/src/layouts/entry-page/entry-page.vue +++ b/src/layouts/entry-page/entry-page.vue @@ -143,6 +143,7 @@ export default { }, populateISSConfigValues(data) { this.mainStore.issConfig.clientName = data.accountName; + this.mainStore.issConfig.clientFullName = data.accountName; // Defaults to use the client name. this.mainStore.issConfig.clientDisplayName = data.accountName; // Defaults to use the client name. this.mainStore.issConfig.parentAccountNumber = data.parentAccountNumber; this.mainStore.issConfig.styleSheet = data.styleSheet; @@ -157,6 +158,10 @@ export default { this.mainStore.issConfig.enableTPAFlow = true; } + if (clientFlags.ClientFullName != null) { + this.mainStore.issConfig.clientFullName = clientFlags.ClientFullName; + } + if (clientFlags.ClientDisplayName != null) { this.mainStore.issConfig.clientDisplayName = clientFlags.ClientDisplayName; }