Skip to content

Commit

Permalink
Fix [Cross project] Runs of type 'Job' displayed in the runs list of …
Browse files Browse the repository at this point in the history
…type 'mpijob' (#2818)
  • Loading branch information
illia-prokopchuk authored Oct 14, 2024
1 parent 5418bbb commit 3d8bcb5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ const ProjectsJobsMonitoring = ({ fetchAllJobRuns, fetchJobFunction, fetchJobs }
JOB_KIND_LOCAL

return (
!filters.type || filters.type === FILTER_ALL_ITEMS || filters.type.includes(type)
!filters.type || filters.type === FILTER_ALL_ITEMS || filters.type.split(',').includes(type)
)
})
const responseAbortingJobs = parsedJobs.reduce((acc, job) => {
Expand Down

0 comments on commit 3d8bcb5

Please sign in to comment.