Render correctly when query input is false in a contract (#6137)

This commit is contained in:
Enrique Fynn 2017-07-25 08:45:14 +02:00 committed by Gav Wood
parent 58fec9181f
commit 985b0fbf7f
1 changed files with 3 additions and 7 deletions

View File

@ -360,10 +360,10 @@ export default class TypedInput extends Component {
renderBoolean () {
const { allowCopy, className, label, error, hint, readOnly } = this.props;
const value = this.getValue();
const value = this.getValue() ? 'true' : 'false';
if (readOnly) {
return this.renderDefault();
return this.renderDefault(value);
}
const boolitems = ['false', 'true'].map((bool) => {
@ -386,11 +386,7 @@ export default class TypedInput extends Component {
hint={ hint }
label={ label }
onChange={ this.onChangeBool }
value={
value
? 'true'
: 'false'
}
value={ value }
>
{ boolitems }
</Select>