Skip to content

Commit

Permalink
22841 - EFT pay model UXA tweak (#2975)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jxio authored Aug 21, 2024
1 parent cccd947 commit 6be51ef
Show file tree
Hide file tree
Showing 4 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.72",
"version": "2.6.73",
"appName": "Auth Web",
"sbcName": "SBC Common Components",
"private": true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
@is-pad-valid="isPADValid"
@is-ejv-valid="isEJVValid"
@cancel="cancel"
@save="save"
/>
<v-slide-y-transition>
<div
Expand Down
3 changes: 2 additions & 1 deletion auth-web/src/components/auth/common/PaymentMethods.vue
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ export default defineComponent({
isInitialAcknowledged: { default: false },
isBcolAdmin: { default: false }
},
emits: ['cancel', 'get-PAD-info', 'emit-bcol-info', 'is-pad-valid', 'is-ejv-valid', 'payment-method-selected'],
emits: ['cancel', 'get-PAD-info', 'emit-bcol-info', 'is-pad-valid', 'is-ejv-valid', 'payment-method-selected', 'save'],
setup (props, { emit, root }) {
const { fetchCurrentOrganizationGLInfo, currentOrgPaymentDetails, getStatementsSummary } = useOrgStore()
const warningDialog: InstanceType<typeof ModalDialog> = ref(null)
Expand Down Expand Up @@ -461,6 +461,7 @@ export default defineComponent({
if (isEFTSelected) {
warningDialog.value.close()
emit('save')
} else {
if (!hasOutstandingBalance) {
warningDialog.value.close()
Expand Down

0 comments on commit 6be51ef

Please sign in to comment.