Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

From QA to Pre prod #42

Merged
merged 4 commits into from
Dec 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
4 changes: 2 additions & 2 deletions 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.1",
"version": "0.5.3",
"description": "Proposal discussion ui",
"main": "./src/index.js",
"exports": {
Expand Down Expand Up @@ -67,4 +67,4 @@
"jsxSingleQuote": true,
"bracketSpacing": true
}
}
}
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
Loading