chore(command-page): 禁用命令表格部分列的排序功能

This commit is contained in:
Ocetars
2025-12-03 15:11:36 +08:00
parent 7aa44ba3d8
commit 281ac6dcfe
+3 -3
View File
@@ -68,9 +68,9 @@ const detailsDialog = reactive({
const commandHeaders = computed(() => [
{ title: tm('table.headers.command'), key: 'effective_command', width: '180px' },
{ title: tm('table.headers.plugin'), key: 'plugin', width: '140px' },
{ title: tm('table.headers.description'), key: 'description', maxWidth: '280px' },
{ title: tm('table.headers.permission'), key: 'permission', width: '100px' },
{ title: tm('table.headers.status'), key: 'enabled', width: '120px' },
{ title: tm('table.headers.description'), key: 'description', sortable: false, maxWidth: '280px' },
{ title: tm('table.headers.permission'), key: 'permission', sortable: false, width: '100px' },
{ title: tm('table.headers.status'), key: 'enabled', sortable: false, width: '120px' },
{ title: tm('table.headers.actions'), key: 'actions', sortable: false, width: '160px' }
]);