Fix AddEditAccountTransaction react keys to not be duplicates

This commit is contained in:
Aaron Lindsay 2016-02-13 16:34:09 -05:00
parent da7fbeecaf
commit b59fd60817
1 changed files with 1 additions and 1 deletions

View File

@ -356,7 +356,7 @@ const AddEditTransactionModal = React.createClass({
}
splits.push((
<Row key={s.SplitId}>
<Row key={s.SplitId == -1 ? (i+999) : s.SplitId}>
<Col xs={1}><Input
type="text"
value={s.Number}