Skip to content

Commit

Permalink
Merge pull request #19496 from mvdbeek/fix_job_informations_invocatio…
Browse files Browse the repository at this point in the history
…n_query

[24.2] Fix invocation query in JobInformation.vue component
  • Loading branch information
mvdbeek authored Jan 30, 2025
2 parents e4c1172 + 2bf7045 commit 5fefdd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/components/JobInformation/JobInformation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ watch(
() => props.job_id,
async (newId, oldId) => {
if (newId && (invocationId.value === undefined || newId !== oldId)) {
const invocation = await fetchInvocationForJob({ jobId: newId });
const invocation = await fetchInvocationForJob(newId);
if (invocation) {
invocationId.value = invocation.id;
} else {
Expand Down

0 comments on commit 5fefdd6

Please sign in to comment.