Skip to content

Commit

Permalink
Pint
Browse files Browse the repository at this point in the history
  • Loading branch information
RMartinOscar committed Jan 27, 2025
1 parent 8a27ecc commit b58fd09
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ public function form(Form $form): Form
->rules(EggVariable::$validationRules['env_variable'])
->validationMessages([
'unique' => 'A variable with this name already exists.',
'required' => ' The environment variable field is required. ',
'required' => ' The environment variable field is required.',
'*' => 'This environment variable is reserved and cannot be used.',
])
->required(),
Expand Down
2 changes: 1 addition & 1 deletion app/Filament/Admin/Resources/EggResource/Pages/EditEgg.php
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ public function form(Form $form): Form
->rules(EggVariable::$validationRules['env_variable'])
->validationMessages([
'unique' => 'A variable with this name already exists.',
'required' => ' The environment variable field is required. ',
'required' => ' The environment variable field is required.',
'*' => 'This environment variable is reserved and cannot be used.',
])
->required(),
Expand Down

0 comments on commit b58fd09

Please sign in to comment.