diff --git a/app/Filament/Resources/EggResource/Pages/CreateEgg.php b/app/Filament/Resources/EggResource/Pages/CreateEgg.php index 517095fb2..20874f95c 100644 --- a/app/Filament/Resources/EggResource/Pages/CreateEgg.php +++ b/app/Filament/Resources/EggResource/Pages/CreateEgg.php @@ -55,7 +55,7 @@ class CreateEgg extends CreateRecord Required for certain games to work properly when the Node has multiple public IP addresses. Enabling this option will disable internal networking for any servers using this egg, causing them to be unable to internally access other servers on the same node."), Forms\Components\Hidden::make('script_is_privileged') - ->helperText('The docker images available to servers using this egg.'), + ->default(1), Forms\Components\TagsInput::make('tags') ->placeholder('Add Tags') ->helperText('') diff --git a/app/Filament/Resources/EggResource/Pages/EditEgg.php b/app/Filament/Resources/EggResource/Pages/EditEgg.php index 80293b191..a058c761a 100644 --- a/app/Filament/Resources/EggResource/Pages/EditEgg.php +++ b/app/Filament/Resources/EggResource/Pages/EditEgg.php @@ -113,6 +113,7 @@ class EditEgg extends EditRecord ->reorderable() ->collapsible()->collapsed() ->orderColumn() + ->addActionLabel('New Variable') ->itemLabel(fn (array $state) => $state['name']) ->mutateRelationshipDataBeforeCreateUsing(function (array $data): array { $data['default_value'] ??= '';