From b82d9d35e65225f63057d7b7412c9c6e9871be6c Mon Sep 17 00:00:00 2001 From: afc163 Date: Thu, 22 Dec 2022 10:27:45 +0800 Subject: [PATCH] style: fix Table header radius when has fixed columns close https://github.com/ant-design/ant-design/issues/39115#issuecomment-1362314574 --- components/table/style/radius.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/table/style/radius.tsx b/components/table/style/radius.tsx index 0e560cfca18a..85654da87acd 100644 --- a/components/table/style/radius.tsx +++ b/components/table/style/radius.tsx @@ -7,7 +7,8 @@ const genRadiusStyle: GenerateStyle = (token) => { return { [`${componentCls}-wrapper`]: { [componentCls]: { - [`${componentCls}-title`]: { + // https://github.com/ant-design/ant-design/issues/39115#issuecomment-1362314574 + [`${componentCls}-title, ${componentCls}-header`]: { borderRadius: `${tableRadius}px ${tableRadius}px 0 0`, },