Skip to content

Commit

Permalink
added some helper text form timezone
Browse files Browse the repository at this point in the history
  • Loading branch information
199ocero committed Jun 1, 2024
1 parent fad3c15 commit 6003e39
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion app/Filament/Admin/Pages/Tenancy/EditTeamProfile.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ public function form(Form $form): Form
TimezoneSelect::make('timezone')
->searchable()
->required()
->timezoneType('GMT'),
->timezoneType('GMT')
->helperText('The timezone will be used for all time related calculations in the application.'),
]),
]);
}
Expand Down
3 changes: 2 additions & 1 deletion app/Filament/Admin/Pages/Tenancy/RegisterTeam.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ public function form(Form $form): Form
TimezoneSelect::make('timezone')
->searchable()
->required()
->timezoneType('GMT'),
->timezoneType('GMT')
->helperText('The timezone will be used for all time related calculations in the application.'),
]);
}

Expand Down

0 comments on commit 6003e39

Please sign in to comment.