chore: correct cron experssion placeholder (#120)

This commit is contained in:
UUBulb
2025-02-20 22:57:08 +08:00
committed by GitHub
parent 0a6b1c671f
commit 41d4d7fc69

View File

@@ -173,7 +173,7 @@ export const CronCard: React.FC<CronCardProps> = ({ data, mutate }) => {
<FormLabel>{t("CronExpression")}</FormLabel> <FormLabel>{t("CronExpression")}</FormLabel>
<FormControl> <FormControl>
<Input <Input
placeholder="0 0 0 3 * * (At 3 AM)" placeholder="0 0 3 * * * (At 3 AM)"
{...field} {...field}
/> />
</FormControl> </FormControl>