Allow alias to be edited on edit server page

This commit is contained in:
notCharles 2024-05-12 12:44:44 -04:00
parent bb52485606
commit ed36041a7e

View File

@ -31,7 +31,7 @@ class AllocationsRelationManager extends RelationManager
// ->actions // ->actions
// ->groups // ->groups
->columns([ ->columns([
Tables\Columns\TextColumn::make('ip_alias')->label('Alias'), Tables\Columns\TextInputColumn::make('ip_alias')->label('Alias'),
Tables\Columns\TextColumn::make('ip')->label('IP'), Tables\Columns\TextColumn::make('ip')->label('IP'),
Tables\Columns\TextColumn::make('port')->label('Port'), Tables\Columns\TextColumn::make('port')->label('Port'),
Tables\Columns\IconColumn::make('primary') Tables\Columns\IconColumn::make('primary')
@ -56,8 +56,8 @@ class AllocationsRelationManager extends RelationManager
->label(fn (Allocation $allocation) => $allocation->id === $this->getOwnerRecord()->allocation_id ? '' : 'Make Primary'), ->label(fn (Allocation $allocation) => $allocation->id === $this->getOwnerRecord()->allocation_id ? '' : 'Make Primary'),
]) ])
->headerActions([ ->headerActions([
Tables\Actions\CreateAction::make()->label('Create Allocation'), //TODO Tables\Actions\CreateAction::make()->label('Create Allocation'),
//Tables\Actions\AssociateAction::make()->label('Add Allocation'), //TODO Tables\Actions\AssociateAction::make()->label('Add Allocation'),
]) ])
->bulkActions([ ->bulkActions([
Tables\Actions\BulkActionGroup::make([ Tables\Actions\BulkActionGroup::make([