From f198489f8018377d5680b83aa97bf7d036f9edaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?kiner-tang=28=E6=96=87=E8=BE=89=29?= <1127031143@qq.com> Date: Fri, 15 Sep 2023 09:58:29 +0800 Subject: [PATCH] fix: solve dropdown label display unexpected --- src/pages/list/basic-list/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/list/basic-list/index.tsx b/src/pages/list/basic-list/index.tsx index 25371d36..dcfbd034 100644 --- a/src/pages/list/basic-list/index.tsx +++ b/src/pages/list/basic-list/index.tsx @@ -145,11 +145,11 @@ export const BasicList: FC = () => { items: [ { key: 'edit', - name: '编辑', + label: '编辑', }, { key: 'delete', - name: '删除', + label: '删除', }, ], }}