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" />
-