Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: TT-344 descending order time-entires table
  • Loading branch information
bytesantiago committed Sep 22, 2021
commit f5a38a9aba91c480a519fba284130f8705dff2e6
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { CalendarView } from 'angular-calendar';
})
export class TimeEntriesComponent implements OnInit, OnDestroy, AfterViewInit {
dtOptions: any = {
"order": [[ 0, "desc" ]]
order: [[ 0, 'desc' ]]
};
dtTrigger: Subject<any> = new Subject();
@ViewChild(DataTableDirective, { static: false })
Expand Down