This is an automated email from the ASF dual-hosted git repository.
jli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/master by this push:
new 337eb3baf5 fix(dashboard): prevent PublishedLabel overlap in
non-English languages (#36877)
337eb3baf5 is described below
commit 337eb3baf5c848acc80e2da07fef793f79a6248f
Author: Tu Shaokun <[email protected]>
AuthorDate: Fri Jan 9 03:22:55 2026 +0800
fix(dashboard): prevent PublishedLabel overlap in non-English languages
(#36877)
---
.../packages/superset-ui-core/src/components/ListViewCard/index.tsx | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git
a/superset-frontend/packages/superset-ui-core/src/components/ListViewCard/index.tsx
b/superset-frontend/packages/superset-ui-core/src/components/ListViewCard/index.tsx
index 098aeb210f..2e718662f2 100644
---
a/superset-frontend/packages/superset-ui-core/src/components/ListViewCard/index.tsx
+++
b/superset-frontend/packages/superset-ui-core/src/components/ListViewCard/index.tsx
@@ -103,7 +103,8 @@ const TitleRight = styled.span`
`;
const CoverFooter = styled.div`
display: flex;
- flex-wrap: nowrap;
+ flex-wrap: wrap;
+ row-gap: ${({ theme }) => theme.sizeUnit}px;
position: relative;
top: -${({ theme }) => theme.sizeUnit * 9}px;
padding: 0 8px;
@@ -111,6 +112,7 @@ const CoverFooter = styled.div`
const CoverFooterLeft = styled.div`
flex: 1;
+ min-width: 0;
overflow: hidden;
`;