Skip to content

Commit

Permalink
chore: cleanup sort-ability of new table columns
Browse files Browse the repository at this point in the history
  • Loading branch information
MrYuion committed Jun 7, 2024
1 parent 9fec7dc commit 06d8bda
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ const task_details = {};
key: 'actions',
name: ' ',
content: actions_template,
size: '3.5rem'
size: '3.5rem',
sortable: false
}
]"
[sortable]="true"
Expand Down
3 changes: 2 additions & 1 deletion apps/backoffice/src/app/admin/edge.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ import { EdgeModalComponent } from './edge-modal.component';
key: 'actions',
name: ' ',
content: actions_template,
size: '6rem'
size: '6rem',
sortable: false
}
]"
[sortable]="true"
Expand Down
3 changes: 2 additions & 1 deletion apps/backoffice/src/app/admin/extensions.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,8 @@ export interface BackofficeExtension {
key: 'actions',
name: ' ',
size: '6rem',
content: actions_template
content: actions_template,
sortable: false
}
]"
[sortable]="true"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ import { DomainStateService } from './domain-state.service';
key: 'actions',
name: ' ',
content: actions_template,
size: '6.5rem'
size: '6.5rem',
sortable: false
}
]"
[sortable]="true"
Expand Down
3 changes: 2 additions & 1 deletion apps/backoffice/src/app/systems/system-triggers.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ export interface TriggerInstanceState {
key: 'actions',
name: ' ',
content: actions_template,
size: '8.75rem'
size: '8.75rem',
sortable: false
}
]"
></simple-table>
Expand Down

0 comments on commit 06d8bda

Please sign in to comment.