mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-15 05:53:00 +00:00
Update unit tests for pagination
This commit is contained in:
@@ -36,8 +36,6 @@ const ServerDashboard = (props) => {
|
||||
limit = useSelector((state) => state.limit),
|
||||
page = parseInt(new URLSearchParams(props.location.search).get("page"));
|
||||
|
||||
console.log(user_page);
|
||||
|
||||
page = isNaN(page) ? 0 : page;
|
||||
var slice = [page * limit, limit];
|
||||
|
||||
|
Reference in New Issue
Block a user