Skip to content

Commit

Permalink
chore: swap 'Time and date' & 'Done by' columns
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterSmallenbroek committed Jan 21, 2025
1 parent ad9b3f2 commit 6ae6a6e
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,11 @@ export class ProjectRegistrationActivityLogPageComponent {
header: $localize`Overview`,
component: TableCellOverviewComponent,
},
{
field: 'created',
header: $localize`Time and date`,
type: QueryTableColumnType.DATE,
},
{
// TODO: AB#30792 TField should also support "leaves" such as "user.name" or "user.address.city"
// @ts-expect-error the typing of query-table does not support "leaves" but the functionality does
Expand All @@ -113,10 +118,5 @@ export class ProjectRegistrationActivityLogPageComponent {
type: QueryTableColumnType.MULTISELECT,
options: this.uniqueAuthors(),
},
{
field: 'created',
header: $localize`Time and date`,
type: QueryTableColumnType.DATE,
},
]);
}

0 comments on commit 6ae6a6e

Please sign in to comment.