Skip to content

Commit d0f9d4e

Browse files
Fix missing parameter name
1 parent 79e05a8 commit d0f9d4e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

resources/views/report.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ class="sr-only ml-2 text-sm font-medium text-gray-900 dark:text-gray-300"></labe
166166

167167
@if($this->isPaginated() && $this->rows->hasPages())
168168
<div class="border-b border-gray-200 shadow-sm">
169-
<div class="py-2 px-6">{{ $this->rows->links(['scrollTo' => $this->shouldScroll()]) }}</div>
169+
<div class="py-2 px-6">{{ $this->rows->links(data: ['scrollTo' => $this->shouldScroll()]) }}</div>
170170
</div>
171171
@endif
172172
@endif

resources/views/table.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110
<div>
111111
@if($this->isPaginated() && $this->rows->hasPages())
112112
<div class="border-b border-gray-200 shadow-sm">
113-
<div class="py-2 px-6">{{ $this->rows->links(['scrollTo' => $this->shouldScroll()]) }}</div>
113+
<div class="py-2 px-6">{{ $this->rows->links(data: ['scrollTo' => $this->shouldScroll()]) }}</div>
114114
</div>
115115
@endif
116116
</div>

0 commit comments

Comments
 (0)