ObjectsTable: show 100 lines instead of 25

This commit is contained in:
Thomas Gelf 2017-07-20 08:28:38 +02:00
parent 5e98ea7b9b
commit 1df9ef13d9
1 changed files with 1 additions and 1 deletions

View File

@ -189,7 +189,7 @@ class ObjectsTable extends ZfQueryBasedTable
['o' => $table],
$this->getColumns()
)
->order('o.object_name')
->order('o.object_name')->limit(100)
);
return $this->applyObjectTypeFilter($query);