Merge pull request #198 from varasev/no-validator-fields

(Fix) Temporarily remove Validator fields from the `New Ballot` page
This commit is contained in:
varasev 2019-04-03 12:34:20 +03:00 committed by GitHub
commit 9f7bfb7b2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 9 deletions

View File

@ -42,15 +42,16 @@ export class NewBallot extends React.Component {
checkValidation() { checkValidation() {
const { commonStore, contractsStore, ballotStore, validatorStore } = this.props const { commonStore, contractsStore, ballotStore, validatorStore } = this.props
if (ballotStore.isNewValidatorPersonalData) { // Temporarily commented (until we implement https://github.com/poanetwork/poa-dapps-voting/issues/120)
for (let validatorProp in validatorStore) { // if (ballotStore.isNewValidatorPersonalData) {
if (validatorStore[validatorProp].length === 0) { // for (let validatorProp in validatorStore) {
swal('Warning!', `Validator ${validatorProp} is empty`, 'warning') // if (validatorStore[validatorProp].length === 0) {
commonStore.hideLoading() // swal('Warning!', `Validator ${validatorProp} is empty`, 'warning')
return false // commonStore.hideLoading()
} // return false
} // }
} // }
// }
if (!ballotStore.memo) { if (!ballotStore.memo) {
swal('Warning!', messages.DESCRIPTION_IS_EMPTY, 'warning') swal('Warning!', messages.DESCRIPTION_IS_EMPTY, 'warning')

View File

@ -63,6 +63,7 @@ export class Validator extends React.Component {
} }
render() { render() {
return null // Temporarily empty (until we implement https://github.com/poanetwork/poa-dapps-voting/issues/120)
const { validatorStore, networkBranch } = this.props const { validatorStore, networkBranch } = this.props
const inputProps = { const inputProps = {
value: validatorStore.address, value: validatorStore.address,