Skip to content

Commit

Permalink
Fix previous button
Browse files Browse the repository at this point in the history
 issue #2043
  • Loading branch information
peregrineshahin committed Dec 11, 2024
1 parent 12981ff commit bea0147
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/fishtest/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def pagination(page_idx, num, page_size, query_params):
pages = [
{
"idx": "Prev",
"url": "?page={}".format(page_idx),
"url": "?page={}".format(page_idx) + query_params,
"state": "disabled" if page_idx == 0 else "",
}
]
Expand Down

0 comments on commit bea0147

Please sign in to comment.