Chore: Renamed the Ledger Table to Account
Chore: Renamed the Ledger Model to Account Chore: Renamed LedgerType to AccountType Chore: Renamed all properties of Account table to lowercase with underscores Feature: Starred Accounts and their entries do not delete during a rebase. Info: Starred Vouchers still delete. They can be starred, but have no effect.
This commit is contained in:
@@ -20,7 +20,13 @@
|
||||
<!-- Name Column -->
|
||||
<ng-container matColumnDef="name">
|
||||
<mat-header-cell *matHeaderCellDef mat-sort-header>Name</mat-header-cell>
|
||||
<mat-cell *matCellDef="let row"><a [routerLink]="['/Account', row.id]">{{row.name}}</a></mat-cell>
|
||||
<mat-cell *matCellDef="let row">
|
||||
<a [routerLink]="['/Account', row.id]">
|
||||
<mat-icon matSuffix *ngIf="row.isStarred" class="gold">star
|
||||
</mat-icon>
|
||||
{{row.name}}
|
||||
</a>
|
||||
</mat-cell>
|
||||
</ng-container>
|
||||
|
||||
<!-- Type Column -->
|
||||
|
||||
Reference in New Issue
Block a user