Skip to content

Commit e0a99eb

Browse files
authored
Merge pull request #45 from kduma-OSS/fix-servers-sorting-order
Fix servers widget sorting order
2 parents 5268086 + a120180 commit e0a99eb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/Http/Livewire/Dashboard/PrintServers.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function refresh()
2828
$this->servers = $this
2929
->team
3030
->PrintServers()
31-
->orderByRaw('ISNULL(last_active_at) DESC, last_active_at DESC')
31+
->orderByRaw('ISNULL(last_active_at) DESC, last_active_at ASC')
3232
->limit(6)
3333
->get();
3434
}

0 commit comments

Comments
 (0)