From 7cfd892bb9950041b362060a092ac15a8297f6a5 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 f9edf3736..752dbbdbd 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`