From 281ac6dcfe9fc4a9628877da789f11455c15afa7 Mon Sep 17 00:00:00 2001 From: Ocetars Date: Wed, 3 Dec 2025 15:11:36 +0800 Subject: [PATCH] =?UTF-8?q?chore(command-page):=20=E7=A6=81=E7=94=A8?= =?UTF-8?q?=E5=91=BD=E4=BB=A4=E8=A1=A8=E6=A0=BC=E9=83=A8=E5=88=86=E5=88=97?= =?UTF-8?q?=E7=9A=84=E6=8E=92=E5=BA=8F=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dashboard/src/views/CommandPage.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dashboard/src/views/CommandPage.vue b/dashboard/src/views/CommandPage.vue index 12c82949d..ac4637c3c 100644 --- a/dashboard/src/views/CommandPage.vue +++ b/dashboard/src/views/CommandPage.vue @@ -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' } ]);