Skip to content

Commit

Permalink
fix(proposal): error when publishing badge proposal
Browse files Browse the repository at this point in the history
  • Loading branch information
arsenijesavic committed Oct 21, 2024
1 parent 6e149e5 commit 7023903
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store/proposals/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -797,7 +797,7 @@ export default {
{ label: 'content_group_label', value: ['string', 'details'] },
{ label: 'title', value: ['string', draft.title] },
{ label: 'description', value: ['string', draft.description] },
{ label: 'url', value: ['string', draft.url] },
{ label: 'url', value: ['string', draft.url || ''] },
{ label: 'icon', value: ['string', draft.icon] },
{ label: 'voice_coefficient_x10000', value: ['int64', parseFloat(draft.voiceCoefficient.value)] },
{ label: 'reward_coefficient_x10000', value: ['int64', parseFloat(draft.rewardCoefficient.value)] },
Expand Down

0 comments on commit 7023903

Please sign in to comment.