diff --git a/pdf-ui/CHANGELOG.md b/pdf-ui/CHANGELOG.md index 6d7be3c..d906db5 100644 --- a/pdf-ui/CHANGELOG.md +++ b/pdf-ui/CHANGELOG.md @@ -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 - diff --git a/pdf-ui/package.json b/pdf-ui/package.json index 1bd85bb..8835a18 100644 --- a/pdf-ui/package.json +++ b/pdf-ui/package.json @@ -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": { @@ -67,4 +67,4 @@ "jsxSingleQuote": true, "bracketSpacing": true } -} \ No newline at end of file +} diff --git a/pdf-ui/src/components/CreationGoveranceAction/WithdrawalsManager.jsx b/pdf-ui/src/components/CreationGoveranceAction/WithdrawalsManager.jsx index 6c69ac1..a27d458 100644 --- a/pdf-ui/src/components/CreationGoveranceAction/WithdrawalsManager.jsx +++ b/pdf-ui/src/components/CreationGoveranceAction/WithdrawalsManager.jsx @@ -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} @@ -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}