diff --git a/app/Livewire/DeploymentsIndicator.php b/app/Livewire/DeploymentsIndicator.php index 34529a7e7..0293ad6c6 100644 --- a/app/Livewire/DeploymentsIndicator.php +++ b/app/Livewire/DeploymentsIndicator.php @@ -18,6 +18,7 @@ public function deployments() return ApplicationDeploymentQueue::whereIn('status', ['in_progress', 'queued']) ->whereIn('server_id', $servers->pluck('id')) + ->orderBy('id') ->get([ 'id', 'application_id', @@ -27,8 +28,7 @@ public function deployments() 'server_name', 'server_id', 'status', - ]) - ->sortBy('id'); + ]); } #[Computed]