diff --git a/src/components/utils/JobCard.tsx b/src/components/utils/JobCard.tsx index 79b044d6..7fbf4d25 100644 --- a/src/components/utils/JobCard.tsx +++ b/src/components/utils/JobCard.tsx @@ -150,29 +150,35 @@ export default class JobCard extends React.Component { ) : ( "" )} -
- - {job.canCancel && !job.stoppedAt ? ( - - ) : null} -
+ + {/* PROGRESS BAR */} + {job.stoppedAt == undefined ? ( +
+ + {job.canCancel && !job.stoppedAt ? ( + + ) : null} +
+ ) : ( + "" + )} );