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')
|
->label('Nama Pengguna atau Alamat Surel')
|
||||||
->placeholder('johndoe@example.com')
|
->placeholder('johndoe@example.com')
|
||||||
->required()
|
->required()
|
||||||
->autocomplete(false)
|
->autocomplete(false),
|
||||||
->autofocus(),
|
|
||||||
|
|
||||||
TextInput::make('password')
|
TextInput::make('password')
|
||||||
->label('Kata Sandi')
|
->label('Kata Sandi')
|
||||||
|
|||||||
@ -75,7 +75,6 @@ public function form(Schema $schema): Schema
|
|||||||
->required()
|
->required()
|
||||||
->maxLength(100)
|
->maxLength(100)
|
||||||
->minLength(3)
|
->minLength(3)
|
||||||
->autofocus()
|
|
||||||
->columnSpanFull(),
|
->columnSpanFull(),
|
||||||
|
|
||||||
Grid::make(3)
|
Grid::make(3)
|
||||||
|
|||||||
@ -42,7 +42,6 @@ public static function configure(Schema $schema): Schema
|
|||||||
->required()
|
->required()
|
||||||
->maxLength(100)
|
->maxLength(100)
|
||||||
->minLength(3)
|
->minLength(3)
|
||||||
->autofocus()
|
|
||||||
->columnSpanFull(),
|
->columnSpanFull(),
|
||||||
|
|
||||||
Grid::make(2)
|
Grid::make(2)
|
||||||
|
|||||||
@ -49,7 +49,6 @@ public static function form(Schema $schema): Schema
|
|||||||
->label('Kode')
|
->label('Kode')
|
||||||
->placeholder('FSI419')
|
->placeholder('FSI419')
|
||||||
->autocomplete(false)
|
->autocomplete(false)
|
||||||
->autofocus()
|
|
||||||
->required()
|
->required()
|
||||||
->maxLength(20)
|
->maxLength(20)
|
||||||
->unique(ignoreRecord: true),
|
->unique(ignoreRecord: true),
|
||||||
|
|||||||
@ -61,7 +61,6 @@ public static function configure(Schema $schema): Schema
|
|||||||
->required()
|
->required()
|
||||||
->maxLength(100)
|
->maxLength(100)
|
||||||
->minLength(3)
|
->minLength(3)
|
||||||
->autofocus()
|
|
||||||
->columnSpanFull(),
|
->columnSpanFull(),
|
||||||
|
|
||||||
Grid::make(3)
|
Grid::make(3)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user