File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
govtool/frontend/src/components/molecules Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,8 @@ changes.
2020
2121### Removed
2222
23+ - Remove ratification threshold for Info Action for Consitutional Committee [ Issue 3108] ( https://github.com/IntersectMBO/govtool/issues/3108 )
24+
2325## [ v2.0.13] ( https://github.com/IntersectMBO/govtool/releases/tag/v2.0.13 ) 2025-02-27
2426
2527### Added
Original file line number Diff line number Diff line change @@ -207,7 +207,11 @@ export const VotesSubmitted = ({
207207 noVotesPercentage = { ccNoVotesPercentage }
208208 notVotedVotes = { ccNotVotedVotes }
209209 notVotedPercentage = { ccNotVotedVotesPercentage }
210- threshold = { Number ( ccThreshold ) }
210+ threshold = {
211+ type !== GovernanceActionType . InfoAction
212+ ? Number ( ccThreshold )
213+ : null
214+ }
211215 />
212216 ) }
213217 </ Box >
You can’t perform that action at this time.
0 commit comments