From 42a544b0a3d87d4dcf09f0959072ea1a32a393cf Mon Sep 17 00:00:00 2001 From: Smart-Codi Date: Fri, 29 Apr 2022 14:32:54 -0400 Subject: [PATCH] fix: Set fixed maxWidth of the cron schedule modal (#19485) * fix: Set fixed maxWidth of the cron schedule modal * resolve comment * resolve comment --- superset-frontend/src/components/ReportModal/styles.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/superset-frontend/src/components/ReportModal/styles.tsx b/superset-frontend/src/components/ReportModal/styles.tsx index f9edf3736d0ec..752dbbdbddb2d 100644 --- a/superset-frontend/src/components/ReportModal/styles.tsx +++ b/superset-frontend/src/components/ReportModal/styles.tsx @@ -71,6 +71,7 @@ export const StyledScheduleTitle = styled.div` export const StyledCronPicker = styled(CronPicker)` margin-bottom: ${({ theme }) => theme.gridUnit * 3}px; + width: ${({ theme }) => theme.gridUnit * 120}px; `; export const StyledCronError = styled.p`