Skip to content

Commit ddf7144

Browse files
authored
30800 - refund approval nuxt updates (#304)
* 30799 / 30800 refund approval updates squash * lint * fix breadcrumb * role check fixes, revert tab logic change that is no longer needed * date format fix * fix test router warnings - stub * fix shortnamelookup test * ShortNamePaymentHistory test fixes * fix transactions filters, update filter dropdown list to expand to fit contents * fix transactions / refund request header bars * transaction expansion / drop down row clean up * mode fixes / patch url fix
1 parent d906164 commit ddf7144

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+5566
-17
lines changed

web/pay-ui/app/components/common/StatusList.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ function clearSelection() {
4242
:class="{ '!pr-14': model }"
4343
:ui="{
4444
placeholder: 'placeholder',
45-
content: 'wide-dropdown',
45+
content: 'wide-dropdown min-w-max',
4646
trailing: model ? '!pr-8' : ''
4747
}"
4848
/>

web/pay-ui/app/components/eft/ShortNameLookup.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ function isShortNameLinkedOrPending(account: EftAccount): boolean {
101101
return account.statusCode === ShortNameStatus.LINKED || account.statusCode === ShortNameStatus.PENDING
102102
}
103103
104-
defineExpose({ clearSelection: clearSelectionSilent })
104+
defineExpose({ clearSelection: clearSelectionSilent, isShortNameLinkedOrPending })
105105
</script>
106106

107107
<template>

web/pay-ui/app/components/eft/ShortNamePaymentHistory.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ function navigateToRefundDetail(item: ShortNameHistoryItem) {
200200
if (!refundId) {
201201
return
202202
}
203-
navigateTo(`/eft/shortname-details/${props.shortNameId}/refund?eftRefundId=${refundId}`)
203+
navigateTo({ path: `/eft/shortname-details/${props.shortNameId}/refund`, query: { eftRefundId: String(refundId) } })
204204
}
205205
206206
function canShowReverseButton(item: ShortNameHistoryItem): boolean {

0 commit comments

Comments
 (0)