Skip to content

Commit

Permalink
Merge pull request #198 from varasev/no-validator-fields
Browse files Browse the repository at this point in the history
(Fix) Temporarily remove Validator fields from the `New Ballot` page
  • Loading branch information
varasev authored Apr 3, 2019
2 parents 5bb4b21 + 3451e9a commit 9f7bfb7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
19 changes: 10 additions & 9 deletions src/components/NewBallot/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,16 @@ export class NewBallot extends React.Component {
checkValidation() {
const { commonStore, contractsStore, ballotStore, validatorStore } = this.props

if (ballotStore.isNewValidatorPersonalData) {
for (let validatorProp in validatorStore) {
if (validatorStore[validatorProp].length === 0) {
swal('Warning!', `Validator ${validatorProp} is empty`, 'warning')
commonStore.hideLoading()
return false
}
}
}
// Temporarily commented (until we implement https://github.com/poanetwork/poa-dapps-voting/issues/120)
// if (ballotStore.isNewValidatorPersonalData) {
// for (let validatorProp in validatorStore) {
// if (validatorStore[validatorProp].length === 0) {
// swal('Warning!', `Validator ${validatorProp} is empty`, 'warning')
// commonStore.hideLoading()
// return false
// }
// }
// }

if (!ballotStore.memo) {
swal('Warning!', messages.DESCRIPTION_IS_EMPTY, 'warning')
Expand Down
1 change: 1 addition & 0 deletions src/components/Validator/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ export class Validator extends React.Component {
}

render() {
return null // Temporarily empty (until we implement https://github.com/poanetwork/poa-dapps-voting/issues/120)
const { validatorStore, networkBranch } = this.props
const inputProps = {
value: validatorStore.address,
Expand Down

0 comments on commit 9f7bfb7

Please sign in to comment.