From 651b887a0e0e3071523e96f9af4b451dccab2de6 Mon Sep 17 00:00:00 2001 From: Lance Pioch Date: Mon, 29 Apr 2024 22:42:04 -0400 Subject: [PATCH] Allow this to be changed --- app/Filament/Resources/EggResource/Pages/EditEgg.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/Filament/Resources/EggResource/Pages/EditEgg.php b/app/Filament/Resources/EggResource/Pages/EditEgg.php index 97a827271..9253cbaaa 100644 --- a/app/Filament/Resources/EggResource/Pages/EditEgg.php +++ b/app/Filament/Resources/EggResource/Pages/EditEgg.php @@ -60,6 +60,10 @@ class EditEgg extends EditRecord 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.'), + Forms\Components\TagsInput::make('tags') + ->placeholder('Add Tags') + ->helperText('') + ->columnSpan(['default' => 1, 'sm' => 1, 'md' => 2, 'lg' => 2]), Forms\Components\TextInput::make('update_url') ->disabled() ->helperText('Not implemented.')