Skip to content

Commit

Permalink
fix: Removed dynamic pagination from history table
Browse files Browse the repository at this point in the history
  • Loading branch information
lewislarsen committed Sep 2, 2024
1 parent 6862d07 commit cfc1143
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Livewire/BackupTasks/Tables/BackupTaskHistoryTable.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public function backupTaskLogs(): LengthAwarePaginator
})
->orderBy('created_at', 'desc')
->paginate(
Auth::user()?->getAttribute('pagination_count') ?? 15,
10,
['*'],
$this->paginationQueryString,
$this->page
Expand Down

0 comments on commit cfc1143

Please sign in to comment.