1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-11-22 17:12:30 +01:00

Revert change to node allocation selection query

This commit is contained in:
Dane Everitt 2017-11-10 21:42:24 -06:00
parent 4dfc7a0053
commit 1740b8dfb5
No known key found for this signature in database
GPG Key ID: EEA66103B3D71F53

View File

@ -104,8 +104,7 @@ class NodeRepository extends EloquentRepository implements NodeRepositoryInterfa
$instance->setRelation(
'allocations',
$instance->allocations()->orderBy('ip', 'asc')->orderBy('port', 'asc')
->with('server')->paginate(2)
$instance->allocations()->orderBy('ip', 'asc')->orderBy('port', 'asc')->with('server')->paginate(50)
);
return $instance;