Skip to content

Commit

Permalink
List of votes: use fixed height to avoid jumping
Browse files Browse the repository at this point in the history
  • Loading branch information
csillag committed May 13, 2024
1 parent 478189f commit d0a7a79
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/app/pages/ProposalDetailsPage/ProposalVotesCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,9 @@ export const ProposalVotesCard: FC = () => {
title={t('common.votes')}
/>
<ErrorBoundary light={true}>
<ProposalVotesView />
<Box sx={{ height: '704px' }}>
<ProposalVotesView />
</Box>
</ErrorBoundary>
</SubPageCard>
)
Expand Down

0 comments on commit d0a7a79

Please sign in to comment.