From eaf5951b7fa2224a82279aafa447522a2a4176ad Mon Sep 17 00:00:00 2001 From: Adam Caouette Date: Thu, 16 Jan 2025 07:25:38 -0500 Subject: [PATCH] CASH-77: fix validation bug --- .../save-progress-modal-question.vue | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/fmg-components/save-progress-modal-question/save-progress-modal-question.vue b/src/fmg-components/save-progress-modal-question/save-progress-modal-question.vue index c8465fef7..2e3cd5f72 100644 --- a/src/fmg-components/save-progress-modal-question/save-progress-modal-question.vue +++ b/src/fmg-components/save-progress-modal-question/save-progress-modal-question.vue @@ -2,6 +2,7 @@
@@ -78,6 +80,10 @@ export default { this.modal.openModal(); this.modal.resetButtonStyle(); }, + onModalClosed() { + this.userInput = ""; + this.modal.resetForm(); + }, async saveProgress() { // save email address to store await this.dispatchStoreAction(storeActions.SAVE_EMAIL, this.userInput, false);