mirror of
https://github.com/aclindsa/moneygo.git
synced 2024-10-31 16:00:05 -04:00
Don't disable BankID if Investment account
This commit is contained in:
parent
d2ebe7b399
commit
3c49e9424d
@ -178,7 +178,7 @@ const AddEditAccountModal = React.createClass({
|
|||||||
</FormGroup>
|
</FormGroup>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
var bankIdDisabled = (this.state.ofxaccttype == "CC") ? true : false;
|
var bankIdDisabled = (this.state.type != AccountType.Investment && this.state.ofxaccttype == "CC") ? true : false;
|
||||||
return (
|
return (
|
||||||
<Modal show={this.props.show} onHide={this.handleCancel}>
|
<Modal show={this.props.show} onHide={this.handleCancel}>
|
||||||
<Modal.Header closeButton>
|
<Modal.Header closeButton>
|
||||||
|
Loading…
Reference in New Issue
Block a user