Skip to content

Commit

Permalink
Merge pull request #2 from warlof/hf-operation-limit
Browse files Browse the repository at this point in the history
Hf operation limit
  • Loading branch information
BenH authored Jun 20, 2017
2 parents 86829f2 + 9f0734b commit bc758f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Http/Controllers/OperationController.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public function __construct() {

public function index(Request $request)
{
$ops = Operation::all()->take(50);
$ops = Operation::all()->take(-50);
$tags = Tag::all()->sortBy('order');

$ops_incoming = $ops->filter(function($op) {
Expand Down

0 comments on commit bc758f7

Please sign in to comment.