From f4be9dadc2b97fae37824a76daee0ef8a87f4a1d Mon Sep 17 00:00:00 2001 From: Jim Date: Wed, 10 Apr 2024 12:12:39 +0100 Subject: [PATCH] Use https://crontab.guru Switching to https://crontab.guru from https://crontab.cronhub.io/ as it gives warnings for non-standard cron expressions and offers info on next run etc. --- app/Filament/Pages/Settings/GeneralPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Filament/Pages/Settings/GeneralPage.php b/app/Filament/Pages/Settings/GeneralPage.php index 67efcf6f0..cd8635e86 100644 --- a/app/Filament/Pages/Settings/GeneralPage.php +++ b/app/Filament/Pages/Settings/GeneralPage.php @@ -89,7 +89,7 @@ public function form(Form $form): Form Forms\Components\TextInput::make('speedtest_schedule') ->rules([new Cron()]) ->helperText('Leave empty to disable scheduled tests.') - ->hint(new HtmlString('🔗Cron Generator')) + ->hint(new HtmlString('🔗Cron Generator')) ->nullable() ->columnSpan(1), Forms\Components\TextInput::make('prune_results_older_than')