diff --git a/apps/client/src/app/components/transactions-table/transactions-table.component.html b/apps/client/src/app/components/transactions-table/transactions-table.component.html index 455555648..5cd389a3e 100644 --- a/apps/client/src/app/components/transactions-table/transactions-table.component.html +++ b/apps/client/src/app/components/transactions-table/transactions-table.component.html @@ -41,56 +41,50 @@ [dataSource]="dataSource" > - # + + # + {{ dataSource.data.length - i }} - + Date -
+
{{ element.date | date: defaultDateFormat }}
- + Type - +
- {{ element.type }} + {{ element.type }}
@@ -102,7 +96,10 @@
{{ element.symbol | gfSymbol }} - Draft
@@ -188,7 +185,9 @@ - Account + + Account +
; @ViewChild(MatSort) sort: MatSort; - public dataSource: MatTableDataSource = new MatTableDataSource(); + public dataSource: MatTableDataSource = + new MatTableDataSource(); public defaultDateFormat = DEFAULT_DATE_FORMAT; public displayedColumns = []; + public endOfToday = endOfToday(); public filters$: Subject = new BehaviorSubject([]); public filters: Observable = this.filters$.asObservable(); + public isAfter = isAfter; public isLoading = true; public placeholder = ''; public routeQueryParams: Subscription;