refactor: Remove autocomplete(false) from the classification ID select field.

This commit is contained in:
Yoga Pangestu 2026-01-27 21:10:17 +07:00
parent 394525bcc2
commit 221b301d89
2 changed files with 2 additions and 3 deletions

View File

@ -9,10 +9,10 @@
class ManageSubClassifications extends ManageRecords
{
protected static ?string $title = 'Sub Klasifikasi';
protected static string $resource = SubClassificationResource::class;
protected static ?string $title = 'Sub Klasifikasi';
protected function getHeaderActions(): array
{
return [

View File

@ -56,7 +56,6 @@ public static function form(Schema $schema): Schema
->native(false)
->required()
->rules(['exists:classifications,id'])
->autocomplete(false)
->autofocus(),
TextInput::make('name')