Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions app/Filament/Pages/Auth/Login.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,12 @@
->extraInputAttributes(['tabindex' => 1]);
}

protected function getPasswordFormComponent(): Component
{
return parent::getPasswordFormComponent()

Check failure on line 71 in app/Filament/Pages/Auth/Login.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.3)

Call to an undefined method Filament\Schemas\Components\Component::extraInputAttributes().

Check failure on line 71 in app/Filament/Pages/Auth/Login.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.2)

Call to an undefined method Filament\Schemas\Components\Component::extraInputAttributes().

Check failure on line 71 in app/Filament/Pages/Auth/Login.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.5)

Call to an undefined method Filament\Schemas\Components\Component::extraInputAttributes().
->extraInputAttributes(['tabindex' => 2]);
}

protected function getOAuthFormComponent(): Component
{
$actions = [];
Expand Down
Loading