fix: sort servers by name
This commit is contained in:
parent
e1d105606d
commit
431c67e9b1
1 changed files with 1 additions and 1 deletions
|
|
@ -326,7 +326,7 @@ public function whatToDoNext()
|
|||
|
||||
public function loadServers()
|
||||
{
|
||||
$this->servers = Server::isUsable()->get();
|
||||
$this->servers = Server::isUsable()->get()->sortBy('name');
|
||||
$this->allServers = $this->servers;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue