Skip to content

Commit

Permalink
HARMONY-1891: Include labels when refreshing the jobs table
Browse files Browse the repository at this point in the history
  • Loading branch information
vinnyinverso committed Oct 3, 2024
1 parent 62f59bc commit 2bd5212
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/harmony/app/frontends/workflow-ui.ts
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,7 @@ export async function getJobsTable(
const { tableQuery } = parseQuery(requestQuery, JobStatus, req.context.isAdminAccess);
const jobQuery = tableQueryToJobQuery(tableQuery, isAdmin, req.user);
const { page, limit } = getPagingParams(req, env.defaultJobListPageSize, 1, true, true);
const jobsRes = await Job.queryAll(db, jobQuery, page, limit);
const jobsRes = await Job.queryAll(db, jobQuery, page, limit, true);
const jobs = jobsRes.data;
const { pagination } = jobsRes;
const selectAllChecked = jobs.every((j) => j.hasTerminalStatus() || (jobIDs.indexOf(j.jobID) > -1)) ? 'checked' : '';
Expand Down

0 comments on commit 2bd5212

Please sign in to comment.