(Fix) Minor fixes

This commit is contained in:
Vadim Arasev 2018-07-04 09:47:25 +03:00
parent d3b3fbbd1a
commit d52d5f5915
3 changed files with 7 additions and 10 deletions

View File

@ -207,8 +207,7 @@ export class BallotCard extends React.Component {
push(`${commonStore.rootPath}`);
});
} else {
swal("Warning!", messages.VOTE_FAILED_TX, "warning").then((result) => {
});
swal("Warning!", messages.VOTE_FAILED_TX, "warning");
}
})
.on("error", (e) => {
@ -262,8 +261,7 @@ export class BallotCard extends React.Component {
push(`${commonStore.rootPath}`);
});
} else {
swal("Warning!", messages.FINALIZE_FAILED_TX, "warning").then((result) => {
});
swal("Warning!", messages.FINALIZE_FAILED_TX, "warning");
}
})
.on("error", (e) => {

View File

@ -231,8 +231,7 @@ export class NewBallot extends React.Component {
push(`${commonStore.rootPath}`);
});
} else {
swal("Warning!", messages.BALLOT_CREATE_FAILED_TX, "warning").then((result) => {
});
swal("Warning!", messages.BALLOT_CREATE_FAILED_TX, "warning");
}
})
.on("error", (e) => {

View File

@ -1,6 +1,6 @@
let messages = {};
messages.invalidVotingKeyMsg = (key) => {
return `The key ${key} is not valid voting Key! Please make sure you have loaded correct voting key in metamask`;
return `The key ${key} is not valid voting Key! Please make sure you have loaded correct voting key in Metamask`;
};
messages.VOTED_SUCCESS_MSG = "You successfully voted";
messages.BALLOT_CREATED_SUCCESS_MSG = "You successfully created a new ballot";
@ -31,11 +31,11 @@ messages.SHOULD_BE_LESS_OR_EQUAL_14_DAYS = (duration) => {
return `Ballot end time should not be more than 14 days from now in UTC time. Current duration is ${duration} hours.`;
}
messages.BALLOT_CREATE_FAILED_TX = `Your transaction was failed. Please make sure you set correct parameters for ballot creation.
Make sure you don't have Transaction Error. Exception thrown in contract code message in metamask before you sign it.`
Make sure you don't have Transaction Error. Exception thrown in contract code message in Metamask before you sign it.`
messages.VOTE_FAILED_TX = `Your transaction was failed. Please make sure you haven't already voted for this ballot.
Make sure you don't have Transaction Error. Exception thrown in contract code message in metamask before you sign it.`
Make sure you don't have Transaction Error. Exception thrown in contract code message in Metamask before you sign it.`
messages.FINALIZE_FAILED_TX = `Your transaction was failed. Make sure you don't have Transaction Error.
Exception thrown in contract code message in metamask before you sign it.`
Exception thrown in contract code message in Metamask before you sign it.`
messages.DESCRIPTION_IS_EMPTY = "Description cannot be empty";
messages.wrongRepo = (repo) => {
return `There is no contracts.json in configured repo ${repo}`;