Skip to content

Commit

Permalink
🐞 fix(ui): fix page error
Browse files Browse the repository at this point in the history
  • Loading branch information
s045pd committed Dec 18, 2024
1 parent f6ae4a1 commit 46b9fa1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gui/src/components/DataCookies.vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
responsive
stacked
v-model="cookies_page"
:total-rows="info"
:total-rows="info.length"
:per-page="cookies_page_size"
aria-controls="cookies_table"
></b-pagination>
Expand Down
2 changes: 1 addition & 1 deletion gui/src/components/DataDownloads.vue
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
responsive
stacked
v-model="downloads_page"
:total-rows="info"
:total-rows="info.length"
:per-page="downloads_page_size"
aria-controls="downloads_table"
></b-pagination>
Expand Down
2 changes: 1 addition & 1 deletion gui/src/components/DataRecording.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
responsive
stacked
v-model="recording_page"
:total-rows="info"
:total-rows="info.length"
:per-page="recording_page_size"
aria-controls="recording_table"
></b-pagination>
Expand Down

0 comments on commit 46b9fa1

Please sign in to comment.