Skip to content

Commit

Permalink
Test Id fix #2437
Browse files Browse the repository at this point in the history
  • Loading branch information
nebojsajsimic committed Dec 4, 2024
1 parent 9d8d4de commit 5addf66
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions pdf-ui/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
As a minor extension, we also keep a semantic version for the `UNRELEASED`
changes.

## [v0.5.3](https://www.npmjs.com/package/@intersect.mbo/pdf-ui/v/0.5.3) 2024-12-04

### Added -
### Fixed -
- Changed input field test id for multiple addresses and amount. [Issue #2437](https://github.com/IntersectMBO/govtool/issues/2437)
### Changed -
### Removed -

## [v0.5.2](https://www.npmjs.com/package/@intersect.mbo/pdf-ui/v/0.5.2) 2024-12-02

### Added -
Expand Down
2 changes: 1 addition & 1 deletion pdf-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@intersect.mbo/pdf-ui",
"version": "0.5.2",
"version": "0.5.3",
"description": "Proposal discussion ui",
"main": "./src/index.js",
"exports": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ const WithdrawalsManager = ({
)}}
required
inputProps={{
'data-testid': `receiving-address-${index}-text-error`,
'data-testid': `receiving-address-${index}-text-input`,
}}
error={!!withdrawalsErrors[index]?.prop_receiving_address}
helperText={withdrawalsErrors[index]?.prop_receiving_address}
Expand All @@ -149,7 +149,7 @@ const WithdrawalsManager = ({
)}
required
inputProps={{
'data-testid': `amount-${index}-text-error`,
'data-testid': `amount-${index}-text-input`,
}}
error={!!withdrawalsErrors[index]?.prop_amount}
helperText={withdrawalsErrors[index]?.prop_amount}
Expand Down

0 comments on commit 5addf66

Please sign in to comment.