Skip to content

Commit

Permalink
feat : update the summary table to display a message
Browse files Browse the repository at this point in the history
  • Loading branch information
Chisomchima committed Mar 28, 2024
1 parent 35e7df7 commit e0df447
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/JobSummary/JobSummary.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,11 @@ const JobSummary = ({
<Tags jobDetails={jobDetails} task={task} />
<Divider />
{task.completed && task.summary && (
<Summary summary={task.summary} importType={task.importType} />
<Summary
summary={task.summary}
importType={task.importType}
dryRun={jobDetails.dryRun}
/>
)}
<div className={styles.events}>
<Log events={task.events} />
Expand Down

0 comments on commit e0df447

Please sign in to comment.