{{ value }}
@@ -526,6 +529,7 @@ type AccountSortState = {
sort_order: AccountSortOrder
}
const ACCOUNT_SORTABLE_KEYS = new Set([
+ 'id',
'name',
'status',
'schedulable',
@@ -1136,6 +1140,7 @@ const allColumns = computed(() => {
const c = [
{ key: 'select', label: '', sortable: false },
{ key: 'name', label: t('admin.accounts.columns.name'), sortable: true },
+ { key: 'id', label: t('admin.accounts.columns.id'), sortable: true },
{ key: 'platform_type', label: t('admin.accounts.columns.platformType'), sortable: false },
{ key: 'capacity', label: t('admin.accounts.columns.capacity'), sortable: false },
{ key: 'status', label: t('admin.accounts.columns.status'), sortable: true },