Skip to content

Commit

Permalink
Update app/Filament/Server/Pages/Settings.php
Browse files Browse the repository at this point in the history
  • Loading branch information
RMartinOscar authored Dec 8, 2024
1 parent ce6e050 commit 2a5d420
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Filament/Server/Pages/Settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public function form(Form $form): Form
->label('Allocation Limit')
->columnSpan(1)
->disabled()
->formatStateUsing(fn ($state, Server $server) => !$state ? 'No additional Allocations can be created' : $server->allocations->count() . ' of ' . ($state)),
->formatStateUsing(fn ($state, Server $server) => !$state ? 'No additional Allocations can be created' : $server->allocations->count() . ' of ' . $state),
]),
]),
Section::make('Node Information')
Expand Down

0 comments on commit 2a5d420

Please sign in to comment.