diff --git a/app/Filament/Admin/Resources/EggResource/Pages/CreateEgg.php b/app/Filament/Admin/Resources/EggResource/Pages/CreateEgg.php index cba306d55..8b6a08799 100644 --- a/app/Filament/Admin/Resources/EggResource/Pages/CreateEgg.php +++ b/app/Filament/Admin/Resources/EggResource/Pages/CreateEgg.php @@ -71,6 +71,10 @@ class CreateEgg extends CreateRecord 'java -Xms128M -XX:MaxRAMPercentage=95.0 -jar {{SERVER_JARFILE}}', ])) ->helperText('The default startup command that should be used for new servers using this Egg.'), + TagsInput::make('file_denylist') + ->placeholder('denied-file.txt') + ->helperText('A list of files that the end user is not allowed to edit.') + ->columnSpan(['default' => 1, 'sm' => 1, 'md' => 2, 'lg' => 2]), TagsInput::make('features') ->placeholder('Add Feature') ->helperText('') diff --git a/app/Filament/Admin/Resources/EggResource/Pages/EditEgg.php b/app/Filament/Admin/Resources/EggResource/Pages/EditEgg.php index d1f064b5c..bd833fa1e 100644 --- a/app/Filament/Admin/Resources/EggResource/Pages/EditEgg.php +++ b/app/Filament/Admin/Resources/EggResource/Pages/EditEgg.php @@ -63,12 +63,11 @@ class EditEgg extends EditRecord ->columnSpan(['default' => 1, 'sm' => 1, 'md' => 2, 'lg' => 2]) ->helperText('The author of this version of the Egg. Uploading a new Egg configuration from a different author will change this.'), Textarea::make('startup') - ->rows(2) + ->rows(3) ->columnSpanFull() ->required() ->helperText('The default startup command that should be used for new servers using this Egg.'), TagsInput::make('file_denylist') - ->hidden() // latest wings breaks it. ->placeholder('denied-file.txt') ->helperText('A list of files that the end user is not allowed to edit.') ->columnSpan(['default' => 1, 'sm' => 1, 'md' => 2, 'lg' => 2]),