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
4 changes: 4 additions & 0 deletions pdf-ui/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ 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.3-alfa](https://www.npmjs.com/package/@intersect.mbo/pdf-ui/v/1.0.3-beta) 2025-06-19
- Fix Vote link visibility

## [v1.0.3-alfa](https://www.npmjs.com/package/@intersect.mbo/pdf-ui/v/1.0.3-alfa) 2025-06-19
- Fix removed voting button for non drep on budget proposal

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.3-alfa",
"version": "1.0.3-beta",
"description": "Proposal discussion ui",
"main": "./src/index.js",
"exports": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1168,7 +1168,8 @@ const SingleGovernanceAction = ({ id }) => {
)}`}
</Typography>
</Box>
<Box>
{proposal?.attributes?.content?.attributes?.prop_submitted &&
(<Box>
<Link
variant='outlined'
data-testid='review-and-vote-link'
Expand All @@ -1179,7 +1180,8 @@ const SingleGovernanceAction = ({ id }) => {
sx={{ cursor: 'pointer' }}
>Vote</Link>
</Box>
<Box></Box>
)
}
</Box>
<Box
mt={2}
Expand Down