From a6d0e6f37a0713e1dfa8a943e3c8e8e68a4d2032 Mon Sep 17 00:00:00 2001 From: Corbin Bullard Date: Tue, 10 Oct 2023 13:52:37 -0400 Subject: [PATCH] fix(RLS): Fix Info Tooltip + Button Alignment on RLS Modal (#25400) --- superset-frontend/src/features/rls/RowLevelSecurityModal.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/superset-frontend/src/features/rls/RowLevelSecurityModal.tsx b/superset-frontend/src/features/rls/RowLevelSecurityModal.tsx index 98ab55fa4294e..d7e7af7126b92 100644 --- a/superset-frontend/src/features/rls/RowLevelSecurityModal.tsx +++ b/superset-frontend/src/features/rls/RowLevelSecurityModal.tsx @@ -39,10 +39,14 @@ import { FilterType, RLSObject, RoleObject, TableObject } from './types'; const StyledModal = styled(Modal)` max-width: 1200px; + min-width: min-content; width: 100%; .ant-modal-body { overflow: initial; } + .ant-modal-footer { + white-space: nowrap; + } `; const StyledIcon = (theme: SupersetTheme) => css` margin: auto ${theme.gridUnit * 2}px auto 0;