mirror of
				https://github.com/aclindsa/moneygo.git
				synced 2025-10-29 17:13:26 -04:00 
			
		
		
		
	Fix exception
This commit is contained in:
		| @@ -417,17 +417,21 @@ const AccountRegister = React.createClass({ | ||||
| 	}, | ||||
| 	componentWillReceiveProps: function(nextProps) { | ||||
| 		if (nextProps.selectedAccount != this.props.selectedAccount) { | ||||
| 			this.setState({ | ||||
| 				selectedTransaction: new Transaction(), | ||||
| 				transactions: [] | ||||
| 			}); | ||||
| 			this.getTransactionPage(nextProps.selectedAccount, 0); | ||||
| 			console.log("TODO begin fetching transactions for new account"); | ||||
| 		} | ||||
| 	}, | ||||
| 	render: function() { | ||||
| 		var name = "Please select an account"; | ||||
| 		if (this.props.selectedAccount != null) | ||||
| 		register = []; | ||||
|  | ||||
| 		if (this.props.selectedAccount != null) { | ||||
| 			name = this.props.selectedAccount.Name; | ||||
|  | ||||
| 		register = []; | ||||
| 		if (this.props.selectedAccount != null) { | ||||
| 			var newTransaction = new Transaction(); | ||||
| 			newTransaction.Description = "Create New Transaction..."; | ||||
| 			newTransaction.Status = TransactionStatus.Entered; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user