From dd1b16acdcf4b02daf48e998e3af44619a8cb403 Mon Sep 17 00:00:00 2001 From: Allure-eve Date: Thu, 4 Jul 2024 08:50:58 +0800 Subject: [PATCH] fix(BasicTable): ColumnSettings.vue columnOptions typeof lost (#3941) --- .../Table/src/components/settings/ColumnSetting.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Table/src/components/settings/ColumnSetting.vue b/src/components/Table/src/components/settings/ColumnSetting.vue index 1a66513a..63f6acb2 100644 --- a/src/components/Table/src/components/settings/ColumnSetting.vue +++ b/src/components/Table/src/components/settings/ColumnSetting.vue @@ -540,13 +540,13 @@ label: typeof col.title === 'string' ? col.title - : col.customTitle === 'string' + : typeof col.customTitle === 'string' ? col.customTitle : '', value: typeof col.dataIndex === 'string' ? col.dataIndex - : col.title === 'string' + : typeof col.title === 'string' ? col.title : '', column: {