update copy when voting is disabled

This commit is contained in:
Barry Gitarts 2018-07-02 18:09:03 -04:00
parent c5201fc0a6
commit 5ead330dab
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ class Poll extends PureComponent {
<b>Your vote:</b> {value} votes ({value * value} SNT)
</Typography>
{cantVote && <Typography variant="body2" color="error">
{balance == 0 && <span>You can not vote because your account had no SNT when this poll was created</span>}
{balance == 0 && <span>Voting disabled for proposals made when there was no SNT in the account</span>}
{balance != 0 && !_canVote && <span>You can not vote on this poll</span>}
</Typography>}
{error && <Typography variant="body2" color="error">{error}</Typography>}