Skip to content

Commit

Permalink
Update VideoView.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
putianyi889 committed Apr 29, 2024
1 parent a60a9f5 commit c1e77da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion front_end/src/views/VideoView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ const handleCurrentChange = (val: number) => {
}
const offsetIndex = (index: number) => {
return state.CurrentPage > 1 ? index - 19 + (state.CurrentPage) * 20 :
return state.CurrentPage > 1 ? index + 1 + (state.CurrentPage - 1) * state.PageSize :
[..."🥇🥈🥉🏅🏅🏅🏅🏅🏅🏅", 11, 12, 13, 14, 15, 16, 17, 18, 19, 20][index];
}
Expand Down

0 comments on commit c1e77da

Please sign in to comment.