Skip to content

Commit

Permalink
Adjust frontend default ordering (#277)
Browse files Browse the repository at this point in the history
to match text description

Fixes #276
  • Loading branch information
OmarHawk authored Oct 9, 2024
1 parent c3d3b54 commit 507dfe4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ export default class EntityAuditComponent implements OnInit {
});

private _audits = signal<EntityAuditEvent[]>([]);
private orderProp = signal<keyof EntityAuditEvent>('entityId');
private ascending = signal(true);
private orderProp = signal<keyof EntityAuditEvent>('modifiedDate');
private ascending = signal(false);

private modalService = inject(NgbModal);
private service = inject(EntityAuditService);
Expand Down

0 comments on commit 507dfe4

Please sign in to comment.