Skip to content

Commit

Permalink
Pretty
Browse files Browse the repository at this point in the history
  • Loading branch information
oblodgett committed Dec 12, 2024
1 parent d053e77 commit 753b3a6
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions src/main/cliapp/src/containers/dataLoadsPage/DataLoadsComponent.js
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,8 @@ export const DataLoadsComponent = () => {
<Button
tooltip="Download file exceptions"
className="p-button-rounded p-button-warning"
onClick={() => downloadFileExceptions(rowData.id)}>
onClick={() => downloadFileExceptions(rowData.id)}
>
<i className="pi pi-exclamation-triangle"></i>
<i className="pi pi-download ml-1"></i>
</Button>
Expand Down Expand Up @@ -322,14 +323,14 @@ export const DataLoadsComponent = () => {
}
} else {
ret.push(
<Button
key="stop"
tooltip="Stop this Load"
icon="pi pi-stop"
className="p-button-rounded p-button-help mr-2"
onClick={() => stopHistoryLoad(rowData)}
/>
);
<Button
key="stop"
tooltip="Stop this Load"
icon="pi pi-stop"
className="p-button-rounded p-button-help mr-2"
onClick={() => stopHistoryLoad(rowData)}
/>
);
}
if (
!rowData.bulkloadStatus ||
Expand Down

0 comments on commit 753b3a6

Please sign in to comment.