monitoring/show/history: pagination count
Fixes it as it didn't work, raised default row count to 50
This commit is contained in:
parent
75a9640563
commit
304c7d146b
|
@ -100,7 +100,7 @@ class Monitoring_ShowController extends Controller
|
|||
//$this->view->object->populate();
|
||||
$this->view->object->fetchEventHistory();
|
||||
$this->handleFormatRequest($this->view->object->eventhistory);
|
||||
$this->view->history = $this->view->object->eventhistory->limit(20)->paginate();
|
||||
$this->view->history = $this->view->object->eventhistory->paginate(50);
|
||||
}
|
||||
|
||||
public function servicesAction()
|
||||
|
|
Loading…
Reference in New Issue