From d085ea900f2f8ffafb58e897722b46c5f7b1a08a Mon Sep 17 00:00:00 2001 From: Carl Nation Date: Tue, 2 Jun 2026 10:35:52 -0400 Subject: [PATCH 1/2] CASH-2468 use cancel link instead of back CASH-2468 use cancel link instead of back --- src/fmg-components/nav-bar/nav-bar.vue | 6 +++++- src/layouts/policy-info/policy-info.vue | 23 +++++++++++++++++------ 2 files changed, 22 insertions(+), 7 deletions(-) diff --git a/src/fmg-components/nav-bar/nav-bar.vue b/src/fmg-components/nav-bar/nav-bar.vue index 6b0397762..96b67f44e 100644 --- a/src/fmg-components/nav-bar/nav-bar.vue +++ b/src/fmg-components/nav-bar/nav-bar.vue @@ -57,6 +57,7 @@ export default { buttonSize: { type: Boolean, default: false }, isSubmitHidden: { type: Boolean, default: false }, overrideButtonText: String, + overrideBackButtonText: String, }, components: { textLink, @@ -73,7 +74,10 @@ export default { }, computed: { backLink() { - return this.getCmsContent(this.cmsWidgetName, "BackButtonText"); + return ( + this.overrideBackButtonText || + this.getCmsContent(this.cmsWidgetName, "BackButtonText") + ); }, buttonText() { return this.customButtontext diff --git a/src/layouts/policy-info/policy-info.vue b/src/layouts/policy-info/policy-info.vue index f5dcb5d96..10fb9d969 100644 --- a/src/layouts/policy-info/policy-info.vue +++ b/src/layouts/policy-info/policy-info.vue @@ -191,12 +191,15 @@ v-model="morePolicyQuestions" groupName="MorePolicyQuestionsQuestion" /> - +
+ +