Skip to content

Commit

Permalink
[ML] job response fix
Browse files Browse the repository at this point in the history
  • Loading branch information
darnautov committed Oct 7, 2019
1 parent 48a7d03 commit 6a22b9f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ export const Page: FC<PageProps> = ({ moduleId, existingGroupIds }) => {
return {
...job,
datafeedResult: datafeedsResponse.find(({ id }) => id.endsWith(job.id)),
setupResult: jobsResponse.find(({ id }) => id === job.id),
setupResult: jobsResponse.find(({ id }) => id === jobPrefix + job.id),
};
})
);
Expand Down

0 comments on commit 6a22b9f

Please sign in to comment.