Skip to content

Commit

Permalink
Importer list: 'Status' header replaces 'Output' (#320)
Browse files Browse the repository at this point in the history
Signed-off-by: mrizzi <[email protected]>
  • Loading branch information
mrizzi authored Jan 20, 2025
1 parent 92fa011 commit fdf8b80
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions client/src/app/pages/importer-list/importer-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@ export const ImporterExpandedArea: React.FC<ImporterExpandedAreaProps> = ({
startDate: "Start date",
endDate: "End date",
numberOfItems: "Number of items",
output: "Output",
status: "Status",
duration: "Duration",
},
isPaginationEnabled: true,
Expand Down Expand Up @@ -627,7 +627,7 @@ export const ImporterExpandedArea: React.FC<ImporterExpandedAreaProps> = ({
<Th {...getThProps({ columnKey: "startDate" })} />
<Th {...getThProps({ columnKey: "endDate" })} />
<Th {...getThProps({ columnKey: "numberOfItems" })} />
<Th {...getThProps({ columnKey: "output" })} />
<Th {...getThProps({ columnKey: "status" })} />
<Th {...getThProps({ columnKey: "duration" })} />
</TableHeaderContentWithControls>
</Tr>
Expand Down Expand Up @@ -682,16 +682,16 @@ export const ImporterExpandedArea: React.FC<ImporterExpandedAreaProps> = ({
{formatDateTime(item.endDate)}
</Td>
<Td
width={10}
width={15}
modifier="truncate"
{...getTdProps({ columnKey: "numberOfItems" })}
>
{item.numberOfItems}
</Td>
<Td
width={40}
width={30}
modifier="truncate"
{...getTdProps({ columnKey: "output" })}
{...getTdProps({ columnKey: "status" })}
>
{item.isRunning ? (
<ImporterStatusIcon state="running" />
Expand All @@ -709,7 +709,7 @@ export const ImporterExpandedArea: React.FC<ImporterExpandedAreaProps> = ({
)}
</Td>
<Td
width={20}
width={25}
modifier="truncate"
{...getTdProps({ columnKey: "duration" })}
>
Expand Down

0 comments on commit fdf8b80

Please sign in to comment.