Skip to content

Commit

Permalink
UIU-3049: Use correct field for display remaining in list
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitriy-Litvinenko committed Feb 7, 2024
1 parent 3454583 commit 1d8e481
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
* Enable effective call number column sorting in Open Loans screen. Refs UIU-3002.
* User Information in User Edit to display profile picture and update button set. Refs UIU-3005.
* Update request header for pay several Fees/fines. Refs UIU-3040.
* Use correct field for display remaining in list. Refs UIU-3049.

## [10.0.4](https://github.com/folio-org/ui-users/tree/v10.0.4) (2023-11-10)
[Full Changelog](https://github.com/folio-org/ui-users/compare/v10.0.3...v10.0.4)
Expand Down
2 changes: 1 addition & 1 deletion src/components/Accounts/ViewFeesFines/ViewFeesFines.js
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ class ViewFeesFines extends React.Component {
'metadata.updatedDate': f => (f.metadata && f.metadata.createdDate !== f.metadata.updatedDate ? <FormattedDate value={f.metadata.updatedDate} /> : '-'),
'feeFineType': f => (f.feeFineType ? this.showComments(f) : '-'),
'amount': f => (f.amount ? localizeCurrencyAmount(f.amount, stripes.currency, intl) : '-'),
'remaining': f => localizeCurrencyAmount(f.amount || 0, stripes.currency, intl),
'remaining': f => localizeCurrencyAmount(f.remaining || 0, stripes.currency, intl),
'paymentStatus.name': f => (f.paymentStatus || {}).name || '-',
'feeFineOwner': f => (f.feeFineOwner ? f.feeFineOwner : '-'),
'title': item => this.formatTitle(item),
Expand Down

0 comments on commit 1d8e481

Please sign in to comment.