From 401ef661117cbeef071df828e6df77da968453de Mon Sep 17 00:00:00 2001 From: JarvisArt <38420763+JarvisArt@users.noreply.github.com> Date: Sat, 31 Dec 2022 19:28:29 +0800 Subject: [PATCH] fix: when table filter, the border will be black (#39938) --- components/table/style/index.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/table/style/index.tsx b/components/table/style/index.tsx index 06ccd72ed9..cfa741609a 100644 --- a/components/table/style/index.tsx +++ b/components/table/style/index.tsx @@ -176,6 +176,7 @@ const genTableStyle: GenerateStyle = (token) => { '> tr': { '> td': { borderTop: tableBorder, + borderBottom: 'transparent', }, '&:last-child > td': { @@ -185,6 +186,7 @@ const genTableStyle: GenerateStyle = (token) => { [`&:first-child > td, &${componentCls}-measure-row + tr > td`]: { borderTop: 'none', + borderTopColor: 'transparent', }, }, },