Skip to content

Commit

Permalink
fix: disabled sort market role status in user role overview (#3869)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelmajgaard authored Jan 6, 2025
1 parent a95fed2 commit d6e59b8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ import { WattQueryParamsDirective } from '@energinet-datahub/watt/directives';
[options]="marketRolesOptions"
[multiple]="true"
[chipMode]="true"
sortDirection="asc"
/>
</form>`,
})
Expand Down
4 changes: 2 additions & 2 deletions libs/dh/admin/feature-user-roles/src/lib/table.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,8 @@ export class DhUserRolesTableComponent {

columns: WattTableColumnDef<DhUserRole> = {
name: { accessor: 'name' },
eicFunction: { accessor: 'eicFunction' },
status: { accessor: 'status' },
eicFunction: { accessor: 'eicFunction', sort: false },
status: { accessor: 'status', sort: false },
};

selection = () => {
Expand Down

0 comments on commit d6e59b8

Please sign in to comment.