Skip to content

Commit

Permalink
#4132 - Update Form IO (Fix Eligible Amount) (#4194)
Browse files Browse the repository at this point in the history
- Set `"refreshOnChange": true` to display eligible amount.


![image](https://github.com/user-attachments/assets/47b34354-5772-4079-b5e7-eb75350c7246)

- Removed "Submit application" button for pages before the last page.


![image](https://github.com/user-attachments/assets/c79d9fd7-7863-4eee-ab9e-ce253f756f0b)
  • Loading branch information
lewischen-aot authored Jan 3, 2025
1 parent 1ab55a4 commit 23bc454
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -717,7 +717,7 @@
}
],
"content": "You are eligible to receive: ${{ (data.eligibleAmount)?.toLocaleString('en-CA', { minimumFractionDigits: 2 }) }}",
"refreshOnChange": false,
"refreshOnChange": true,
"customClass": "",
"hidden": false,
"modalEdit": false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
{{ savingDraft ? "Saving..." : "Save draft" }}</v-btn
>
<v-btn
v-if="!isReadOnly && !isFirstPage"
v-if="!isReadOnly && isLastPage"
class="ml-2"
:disabled="submittingApplication"
color="primary"
Expand Down

0 comments on commit 23bc454

Please sign in to comment.