Skip to content

Commit

Permalink
Fix "Total paid amount" value that set as "$NaN"
Browse files Browse the repository at this point in the history
  • Loading branch information
artem-blazhko committed Apr 19, 2024
1 parent b3a16e7 commit 738fb7d
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 @@ -7,6 +7,7 @@
* Fix incorrect translation key having count-disagreements in Pay fees/fines modal in Fees/Fines Page. Refs UIU-1097.
* Trim input values and delete properties with empty string when user record save. Refs UIU-2049.
* Update username field validation to trim leading and trailing spaces. Refs UIU-3099.
* Fix "Total paid amount" value that set as "$NaN" on "Refund fee/fine" modal. Refs UIU-3094.

## [10.1.0](https://github.com/folio-org/ui-users/tree/v10.1.0) (2024-03-20)
[Full Changelog](https://github.com/folio-org/ui-users/compare/v10.0.4...v10.1.0)
Expand Down
2 changes: 1 addition & 1 deletion src/components/Accounts/Actions/ActionModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ class ActionModal extends React.Component {
:
</Col>
<Col xs={4}>
{localizeCurrencyAmount(totalPaidAmount, stripes.currency, intl)}
{totalPaidAmount}
</Col>
</Row>
) : (
Expand Down

0 comments on commit 738fb7d

Please sign in to comment.