Skip to content

Commit

Permalink
[24.0] Fix undefined reading 'produces_entry_points' TypeError
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedhamidawan committed May 14, 2024
1 parent e1815c3 commit 48e1eda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/components/Tool/ToolSuccess.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ onMounted(() => {

<template>
<section>
<div v-if="jobResponse.produces_entry_points">
<div v-if="jobResponse?.produces_entry_points">
<ToolEntryPoints v-for="job in jobResponse.jobs" :key="job.id" :job-id="job.id" />
</div>
<ToolSuccessMessage :job-response="jobResponse" :tool-name="toolName" />
Expand Down

0 comments on commit 48e1eda

Please sign in to comment.