fixes #1 new transaction opening balance

This commit is contained in:
Patrick Nagurny
2019-04-03 11:30:28 -04:00
committed by Patrick Nagurny
parent a791e5deaa
commit 2439aef941

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;