Skip to content

Commit

Permalink
22391 - EFT Multi Account Under Payment Caution (#3007)
Browse files Browse the repository at this point in the history
  • Loading branch information
ochiu authored Sep 12, 2024
1 parent 23b05a7 commit 99cc2e5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions auth-web/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion auth-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "auth-web",
"version": "2.6.86",
"version": "2.6.87",
"appName": "Auth Web",
"sbcName": "SBC Common Components",
"private": true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
</div>
</div>
<div
v-if="shortNameLinksCount > 1"
v-if="shortNameLinksCount > 1 && isEftUnderPayment"
class="flex-row mt-4"
>
<v-alert
Expand Down Expand Up @@ -229,6 +229,7 @@ export default defineComponent({
paymentOwingAmount: 0,
paymentDueDate: null,
shortNameLinksCount: 0,
isEftUnderPayment: false,
statementSettingsModal: null,
hasEFTPaymentMethod: false,
headerStatements: computed(() => {
Expand Down Expand Up @@ -294,6 +295,7 @@ export default defineComponent({
state.paymentOwingAmount = data?.totalDue
state.paymentDueDate = data?.oldestDueDate
state.shortNameLinksCount = data?.shortNameLinksCount
state.isEftUnderPayment = data?.isEftUnderPayment
return data
} catch (error) {
// eslint-disable-next-line no-console
Expand Down

0 comments on commit 99cc2e5

Please sign in to comment.