Browse Source

Add quantity to accounts tab of holding detail dialog

pull/7595/head
Thomas Kaul 3 weeks ago
parent
commit
e2465c5ed2
  1. 4
      libs/ui/src/lib/accounts-table/accounts-table.component.ts

4
libs/ui/src/lib/accounts-table/accounts-table.component.ts

@ -116,7 +116,9 @@ export class GfAccountsTableComponent {
columns.push('value'); columns.push('value');
} }
columns.push('currency'); if (this.showBalance() || this.showValue()) {
columns.push('currency');
}
if (this.showValueInBaseCurrency()) { if (this.showValueInBaseCurrency()) {
columns.push('valueInBaseCurrency'); columns.push('valueInBaseCurrency');

Loading…
Cancel
Save