8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd4a8dc commit 7b39452Copy full SHA for 7b39452
src/webviews/src/settings/CronChooser.tsx
@@ -14,7 +14,7 @@ const defaultSchedules = {
14
}
15
16
const CronChooser: FunctionComponent<CronChooserProps> = props => {
17
- const [customCron, setCustomCron] = React.useState('*/5 * * * *')
+ const [customCron, setCustomCron] = React.useState('0 0 * * *')
18
const [showCustom, setShowCustom] = React.useState(false)
19
const [cronFeedback, setCronFeedback] = React.useState<string | Error>('')
20
src/webviews/src/store.ts
@@ -40,7 +40,7 @@ export const useFlatConfigStore = create<FlatStoreState>(
40
},
41
schedule: [
42
{
43
- cron: '0 * * * *',
+ cron: '0 0 * * *',
44
45
],
46
0 commit comments