Skip to content

Commit

Permalink
fix: no padding when there is no progress bar
Browse files Browse the repository at this point in the history
  • Loading branch information
pbullhove committed Mar 14, 2024
1 parent 06795ad commit 2af538f
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions packages/dm-core-plugins/src/job/JobControl/JobControl.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -254,11 +254,12 @@ export const JobControl = (props: IUIPlugin) => {
</div>
)}
</JobButtonWrapper>
<div className='p-2'>
{status === JobStatus.Running && progress !== null && (

{status === JobStatus.Running && progress !== null && (
<div className='ps-2'>
<Progress progress={progress} />
)}
</div>
</div>
)}
</div>
</div>
</div>
Expand Down

0 comments on commit 2af538f

Please sign in to comment.