You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ru...@apache.org on 2022/04/29 18:33:04 UTC

[superset] branch master updated: fix: Set fixed maxWidth of the cron schedule modal (#19485)

This is an automated email from the ASF dual-hosted git repository.

rusackas 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 7cfd892bb9 fix: Set fixed maxWidth of the cron schedule modal (#19485)
7cfd892bb9 is described below

commit 7cfd892bb9950041b362060a092ac15a8297f6a5
Author: Smart-Codi <co...@gmail.com>
AuthorDate: Fri Apr 29 14:32:54 2022 -0400

    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 f9edf3736d..752dbbdbdd 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`