Merge branch '000-snt-voting-dapp' of https://github.com/status-im/contracts into 000-snt-voting-dapp

This commit is contained in:
Richard Ramos 2018-07-03 10:35:05 -04:00
commit 68ed1be293
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>}