This is an automated email from the ASF dual-hosted git repository.

maximebeauchemin pushed a commit to branch template_less
in repository https://gitbox.apache.org/repos/asf/superset.git

commit 5042248ed750536f6a465a65a1897e1f5a5d93de
Author: Maxime Beauchemin <[email protected]>
AuthorDate: Mon Mar 24 13:26:06 2025 -0700

    Fix table row separator in TableCollection
---
 superset-frontend/src/components/TableCollection/index.tsx | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/superset-frontend/src/components/TableCollection/index.tsx 
b/superset-frontend/src/components/TableCollection/index.tsx
index 16df7ecb90..2e660aa02d 100644
--- a/superset-frontend/src/components/TableCollection/index.tsx
+++ b/superset-frontend/src/components/TableCollection/index.tsx
@@ -48,6 +48,9 @@ export const Table = styled.table`
       tr:first-of-type > td {
         border-top: 0;
       }
+      tr > td {
+        border-top: 1px solid ${theme.colorSplit};
+      }
     }
     th {
       position: sticky;

Reply via email to