diff --git a/app/Filament/Resources/NodeResource/Pages/CreateNode.php b/app/Filament/Resources/NodeResource/Pages/CreateNode.php index 9ffa0aeee..dd06b73be 100644 --- a/app/Filament/Resources/NodeResource/Pages/CreateNode.php +++ b/app/Filament/Resources/NodeResource/Pages/CreateNode.php @@ -69,15 +69,15 @@ class CreateNode extends CreateRecord return ''; }) - ->disabled(function (Forms\Get $get, Forms\Set $set) { - if (request()->isSecure()) { - $set('scheme', 'https'); - - return true; - } - - return false; - }) +// ->disabled(function (Forms\Get $get, Forms\Set $set) { +// if (request()->isSecure()) { +// $set('scheme', 'https'); +// +// return true; +// } +// +// return false; +// }) ->options([ 'http' => 'HTTP', 'https' => 'HTTPS (SSL)',