refactor: remove autofocus attribute from input fields across various forms for consistency
This commit is contained in:
parent
fb78092de0
commit
7602e1ad09
@ -37,8 +37,7 @@ public function form(Schema $schema): Schema
|
||||
->label('Nama Pengguna atau Alamat Surel')
|
||||
->placeholder('johndoe@example.com')
|
||||
->required()
|
||||
->autocomplete(false)
|
||||
->autofocus(),
|
||||
->autocomplete(false),
|
||||
|
||||
TextInput::make('password')
|
||||
->label('Kata Sandi')
|
||||
|
||||
@ -75,7 +75,6 @@ public function form(Schema $schema): Schema
|
||||
->required()
|
||||
->maxLength(100)
|
||||
->minLength(3)
|
||||
->autofocus()
|
||||
->columnSpanFull(),
|
||||
|
||||
Grid::make(3)
|
||||
|
||||
@ -42,7 +42,6 @@ public static function configure(Schema $schema): Schema
|
||||
->required()
|
||||
->maxLength(100)
|
||||
->minLength(3)
|
||||
->autofocus()
|
||||
->columnSpanFull(),
|
||||
|
||||
Grid::make(2)
|
||||
|
||||
@ -49,7 +49,6 @@ public static function form(Schema $schema): Schema
|
||||
->label('Kode')
|
||||
->placeholder('FSI419')
|
||||
->autocomplete(false)
|
||||
->autofocus()
|
||||
->required()
|
||||
->maxLength(20)
|
||||
->unique(ignoreRecord: true),
|
||||
|
||||
@ -61,7 +61,6 @@ public static function configure(Schema $schema): Schema
|
||||
->required()
|
||||
->maxLength(100)
|
||||
->minLength(3)
|
||||
->autofocus()
|
||||
->columnSpanFull(),
|
||||
|
||||
Grid::make(3)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user