Skip to content
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
3 changes: 3 additions & 0 deletions pdf-ui/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ 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.

## [v1.0.13-beta](https://www.npmjs.com/package/@intersect.mbo/pdf-ui/v/1.0.13-beta) 2025-08-11
- Add # to Proposal Details WithdrawalsManager

## [v1.0.12-beta](https://www.npmjs.com/package/@intersect.mbo/pdf-ui/v/1.0.12-beta) 2025-08-08
- feat: Update Treasury Proposal Amount Field to Accept ADA Instead of Lovelace #4000

Expand Down
2 changes: 1 addition & 1 deletion pdf-ui/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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": "1.0.12-beta",
"version": "1.0.13-beta",
"description": "Proposal discussion ui",
"main": "./src/index.js",
"exports": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ const WithdrawalsManager = ({

<TextField
margin='normal'
label={`Receiving stake address ${index + 1}`}
label={`Receiving stake address #${index + 1}`}
variant='outlined'
placeholder='e.g. stake1...'
value={withdrawal.prop_receiving_address || ''}
Expand Down Expand Up @@ -150,7 +150,7 @@ const WithdrawalsManager = ({
/>
<TextField
margin='normal'
label={`Amount (in ada) - ${index + 1}`}
label={`Amount (in ada) #${index + 1}`}
type='tel'
variant='outlined'
placeholder='e.g. 2000 ada'
Expand Down