Skip to content

Commit fb5a9ad

Browse files
authored
Merge branch 'main' into feat/schedule-ui
2 parents bb2f6e4 + 3381265 commit fb5a9ad

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

app/Filament/Pages/Tools/ListOoklaServers.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
use Filament\Forms\Components\Textarea;
88
use Filament\Forms\Concerns\InteractsWithForms;
99
use Filament\Forms\Contracts\HasForms;
10-
use Filament\Forms\Form;
1110
use Filament\Notifications\Notification;
1211
use Filament\Pages\Page;
12+
use Filament\Schemas\Schema;
1313

1414
class ListOoklaServers extends Page implements HasForms
1515
{
@@ -69,10 +69,10 @@ public function fetchServers(): void
6969
}
7070
}
7171

72-
public function form(Form $form): Form
72+
public function form(Schema $schema): Schema
7373
{
74-
return $form
75-
->schema([
74+
return $schema
75+
->components([
7676
Textarea::make('servers')
7777
->label(false)
7878
->rows(20)

resources/views/livewire/next-speedtest-banner.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<div class="ml-3 flex-1">
1010
<p class="text-sm text-blue-700 dark:text-blue-300">
11-
Next scheduled test at <span class="font-medium">{{ $this->nextSpeedtest->timezone(config('app.display_timezone'))->format('F jS, Y, g:i a') }}</span>.
11+
Next scheduled test at <span class="font-medium">{{ $this->nextSpeedtest->timezone(config('app.display_timezone'))->format(config('app.datetime_format')) }}</span>.
1212
</p>
1313
</div>
1414
</div>

0 commit comments

Comments
 (0)