Merge pull request #3 from pnagurny/bug/new-tx-opening-balance

fixes #1 new transaction opening balance
This commit is contained in:
Patrick Nagurny
2019-04-03 11:34:50 -04:00
committed by GitHub

View File

@@ -338,7 +338,7 @@ export class NewTransactionPage {
});
let firstAccounts = dataWithLabels.slice(0, this.numAccountsShown);
let nextAccounts = dataWithLabels.slice(this.numAccountsShown);
let nextAccounts = dataWithLabels.slice();
nextAccounts.sort((a, b) => {
let aAlpha = a.label.charCodeAt(0) >= 65 && a.label.charCodeAt(0) <= 122;