This is an automated email from the ASF dual-hosted git repository. michaelsmolina pushed a commit to branch 3.0 in repository https://gitbox.apache.org/repos/asf/superset.git
commit 44fb6b555143e534528400bfb4d9061efc7eab09 Author: Ross Mabbett <[email protected]> AuthorDate: Mon Nov 20 14:24:02 2023 -0500 fix(horizontal filter bar filter labels): Increase max-width to 96px (#25883) Co-authored-by: Elizabeth Thompson <[email protected]> (cherry picked from commit e7797b65d1dadc1c466d1852747657b0aade9690) --- .../components/nativeFilters/FilterBar/FilterControls/FilterControl.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControl.tsx b/superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControl.tsx index 37739e5370..96f51f5359 100644 --- a/superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControl.tsx +++ b/superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControl.tsx @@ -49,7 +49,6 @@ const VerticalFilterControlTitle = styled.h4` const HorizontalFilterControlTitle = styled(VerticalFilterControlTitle)` font-weight: ${({ theme }) => theme.typography.weights.normal}; color: ${({ theme }) => theme.colors.grayscale.base}; - max-width: ${({ theme }) => theme.gridUnit * 15}px; ${truncationCSS}; `;
