diff --git a/src/common-components/base-input-button/base-input-button.vue b/src/common-components/base-input-button/base-input-button.vue index 572be9ef5..bbe92c1d5 100644 --- a/src/common-components/base-input-button/base-input-button.vue +++ b/src/common-components/base-input-button/base-input-button.vue @@ -45,6 +45,7 @@ export default { }; }, mounted() { + // Need this here and in the watch for vehicle-parts, unless there'a better way if (this.isChecked) { this.handleChange(this.modelValue); } @@ -188,6 +189,13 @@ export default { fieldOptions, // only need to expose this for unit test purposes }; }, + watch: { + isChecked(isChecked) { + if (isChecked) { + this.handleChange(this.modelValue); + } + }, + }, }; diff --git a/src/common-components/funnel-footer/funnel-footer.vue b/src/common-components/funnel-footer/funnel-footer.vue index 2a6119681..43b471e81 100644 --- a/src/common-components/funnel-footer/funnel-footer.vue +++ b/src/common-components/funnel-footer/funnel-footer.vue @@ -15,6 +15,10 @@ data-bs-target="#footerModal" data-bs-dismiss="modal" /> + +
+ +