Skip to content

Commit 8620468

Browse files
authored
Merge pull request #2518 from IntersectMBO/fix/misalignment-of-the-votes-when-connected
fix: misalignment of votes on connected governance actions
2 parents 32a3f8b + 8be8d63 commit 8620468

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ changes.
1717
### Fixed
1818

1919
- Fix mzero parsing error on fetching the /proposal/list [Issue 2446](https://github.com/IntersectMBO/govtool/issues/2446)
20+
- Fix scaling gov action votes on lower resolutions
2021

2122
### Changed
2223

govtool/frontend/src/components/organisms/GovernanceActionDetailsCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export const GovernanceActionDetailsCard = ({
3131
const [isVoteSubmitted, setIsVoteSubmitted] = useState<boolean>(false);
3232
const { screenWidth, isMobile } = useScreenDimension();
3333

34-
const isOneColumn = (isDashboard && screenWidth < 1645) ?? isMobile;
34+
const isOneColumn = (isDashboard && screenWidth < 1036) ?? isMobile;
3535
const { pathname, hash } = useLocation();
3636

3737
const govActionLinkToShare = `${window.location.protocol}//${

0 commit comments

Comments
 (0)