mirror of
https://github.com/aclindsa/moneygo.git
synced 2025-07-01 20:08:39 -04:00
AccountsTab: Only update 'OFX Account Type' field if it exists
This commit is contained in:
@ -110,12 +110,16 @@ class AddEditAccountModal extends React.Component {
|
|||||||
ofxuser: ReactDOM.findDOMNode(this.refs.ofxuser).value,
|
ofxuser: ReactDOM.findDOMNode(this.refs.ofxuser).value,
|
||||||
ofxbankid: ReactDOM.findDOMNode(this.refs.ofxbankid).value,
|
ofxbankid: ReactDOM.findDOMNode(this.refs.ofxbankid).value,
|
||||||
ofxacctid: ReactDOM.findDOMNode(this.refs.ofxacctid).value,
|
ofxacctid: ReactDOM.findDOMNode(this.refs.ofxacctid).value,
|
||||||
ofxaccttype: ReactDOM.findDOMNode(this.refs.ofxaccttype).value,
|
|
||||||
ofxclientuid: ReactDOM.findDOMNode(this.refs.ofxclientuid).value,
|
ofxclientuid: ReactDOM.findDOMNode(this.refs.ofxclientuid).value,
|
||||||
ofxappid: ReactDOM.findDOMNode(this.refs.ofxappid).value,
|
ofxappid: ReactDOM.findDOMNode(this.refs.ofxappid).value,
|
||||||
ofxappver: ReactDOM.findDOMNode(this.refs.ofxappver).value,
|
ofxappver: ReactDOM.findDOMNode(this.refs.ofxappver).value,
|
||||||
ofxversion: ReactDOM.findDOMNode(this.refs.ofxversion).value,
|
ofxversion: ReactDOM.findDOMNode(this.refs.ofxversion).value,
|
||||||
});
|
});
|
||||||
|
if (this.state.type != AccountType.Investment) {
|
||||||
|
this.setState({
|
||||||
|
ofxaccttype: ReactDOM.findDOMNode(this.refs.ofxaccttype).value,
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
handleNoIndentClick() {
|
handleNoIndentClick() {
|
||||||
|
Reference in New Issue
Block a user