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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ changes.
- Remove abstain votes (not auto abstain) from total DRep stake
- Fix counting committee members [Issue 2948](https://github.com/IntersectMBO/govtool/issues/2948)
- Fix refetching DRep list on every enter [Issue 2994](https://github.com/IntersectMBO/govtool/issues/2994)
- Fix displaying helper buttons on governance action card details [Issue 3022](https://github.com/IntersectMBO/govtool/issues/3022)

### Changed

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -338,14 +338,14 @@ export const GovernanceActionDetailsCardData = ({
<GovernanceActionCardElement
label={t("govActions.anchorURL")}
text={url}
textVariant="longText"
textVariant={screenWidth > 1600 ? "longText" : "oneLine"}
dataTestId="anchor-url"
isLinkButton
/>
<GovernanceActionCardElement
label={t("govActions.anchorHash")}
text={metadataHash}
textVariant="longText"
textVariant={screenWidth > 1600 ? "longText" : "oneLine"}
dataTestId="anchor-hash"
isCopyButton
/>
Expand Down