From a063d8e81e64cb62be91503aafe483239f1b75b6 Mon Sep 17 00:00:00 2001 From: xingyu4j Date: Sat, 21 Jun 2025 16:21:48 +0800 Subject: [PATCH] fix: table actions --- apps/web-antd/src/components/table-action/table-action.vue | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/apps/web-antd/src/components/table-action/table-action.vue b/apps/web-antd/src/components/table-action/table-action.vue index 21c8197df..72f7bf16e 100644 --- a/apps/web-antd/src/components/table-action/table-action.vue +++ b/apps/web-antd/src/components/table-action/table-action.vue @@ -237,7 +237,7 @@ function getTooltipProps(tooltip: any | string) { } function handleMenuClick(e: any) { - const action = unref(getDropdownList)[e.key]; + const action = getDropdownList.value[e.key]; if (action.onClick && isFunction(action.onClick)) { action.onClick(); } @@ -294,10 +294,7 @@ function getActionKey(action: ActionItem, index: number) {