diff --git a/src/layouts/bailout-page/bailout-page.vue b/src/layouts/bailout-page/bailout-page.vue new file mode 100644 index 00000000..11164f8c --- /dev/null +++ b/src/layouts/bailout-page/bailout-page.vue @@ -0,0 +1,74 @@ + + + \ No newline at end of file diff --git a/src/layouts/entry-page/entry-page.vue b/src/layouts/entry-page/entry-page.vue index c1a2d011..db24c722 100644 --- a/src/layouts/entry-page/entry-page.vue +++ b/src/layouts/entry-page/entry-page.vue @@ -74,6 +74,7 @@ populateISSConfigValues(data) { this.mainStore.issConfig.clientName = data.accountName; + this.mainStore.issConfig.clientDisplayName = data.accountName; // Defaults to use the client name. this.mainStore.issConfig.accountNumber = data.accountNumber; this.mainStore.issConfig.styleSheet = data.styleSheet; this.mainStore.issConfig.isCoverageEnabled = data.coverageEnabled; @@ -91,9 +92,9 @@ this.mainStore.issConfig.enableTPAFlow = true; } - if ( clientFlags.clientDisplayName != null ) + if ( clientFlags.ClientDisplayName != null ) { - this.mainStore.issConfig.clientDisplayName = clientFlags.clientDisplayName; + this.mainStore.issConfig.clientDisplayName = clientFlags.ClientDisplayName; } } catch ( e ) diff --git a/src/layouts/service-packages/service-packages.vue b/src/layouts/service-packages/service-packages.vue index 1104bbd8..1158c14c 100644 --- a/src/layouts/service-packages/service-packages.vue +++ b/src/layouts/service-packages/service-packages.vue @@ -35,6 +35,7 @@