mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-29 18:20:01 +00:00
Fix #2467
This commit is contained in:
@@ -399,7 +399,9 @@ class BillRepository implements BillRepositoryInterface
|
||||
*/
|
||||
public function getPaginator(int $size): LengthAwarePaginator
|
||||
{
|
||||
return $this->user->bills()->paginate($size);
|
||||
return $this->user->bills()
|
||||
->orderBy('active', 'DESC')
|
||||
->orderBy('name', 'ASC')->paginate($size);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user