Skip to content

Commit

Permalink
fix constant gql query
Browse files Browse the repository at this point in the history
  • Loading branch information
spacehamster87 committed Sep 2, 2024
1 parent 8ded131 commit 4ec1de6
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions web/frontend/src/Node.root.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,10 @@
},
});
let itemsPerPage = ccconfig.plot_list_jobsPerPage;
let page = 1;
let paging = { itemsPerPage, page };
let sorting = { field: "startTime", type: "col", order: "DESC" };
$: filter = [
const paging = { itemsPerPage: 50, page: 1 };
const sorting = { field: "startTime", type: "col", order: "DESC" };
const filter = [
{ cluster: { eq: cluster } },
{ node: { contains: hostname } },
{ state: ["running"] },
Expand Down

0 comments on commit 4ec1de6

Please sign in to comment.