mirror of
https://github.com/apache/superset.git
synced 2026-04-19 08:04:53 +00:00
fix(Alerts & Reports): Fixing bug that resets cron value to default when empty (#27262)
This commit is contained in:
@@ -1581,7 +1581,7 @@ const AlertReportModal: FunctionComponent<AlertReportModalProps> = ({
|
||||
key="schedule"
|
||||
>
|
||||
<AlertReportCronScheduler
|
||||
value={currentAlert?.crontab || ALERT_REPORTS_DEFAULT_CRON_VALUE}
|
||||
value={currentAlert?.crontab || ''}
|
||||
onChange={newVal => updateAlertState('crontab', newVal)}
|
||||
/>
|
||||
<StyledInputContainer>
|
||||
|
||||
Reference in New Issue
Block a user