diff --git a/app/Filament/Resources/NodeResource/RelationManagers/AllocationsRelationManager.php b/app/Filament/Resources/NodeResource/RelationManagers/AllocationsRelationManager.php index 9bda3ee66..d4d5b07e4 100644 --- a/app/Filament/Resources/NodeResource/RelationManagers/AllocationsRelationManager.php +++ b/app/Filament/Resources/NodeResource/RelationManagers/AllocationsRelationManager.php @@ -129,6 +129,8 @@ class AllocationsRelationManager extends RelationManager $ports = $sortedPorts; } + $ports = $ports->filter(fn ($port) => $port > 1024 && $port < 65535)->values(); + if ($update) { $set('allocation_ports', $ports->all()); }