Skip to content

Commit

Permalink
chore: removed compute function column
Browse files Browse the repository at this point in the history
Signed-off-by: Adithya Krishna <[email protected]>
  • Loading branch information
adithyaakrishna committed Nov 6, 2024
1 parent bc17c65 commit 2b441c0
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions server/ui/src/components/tables/InvocationOutputTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ function InvocationOutputTable({ indexifyServiceURL, invocationId, namespace, co
id={`panel${index}-header`}
>
<Box sx={{ display: 'flex', alignItems: 'center', width: '100%', justifyContent: 'space-between' }}>
<Typography>{computeFn} ({outputs.length} outputs)</Typography>
<Typography>Compute Function - {computeFn} ({outputs.length} outputs)</Typography>
<Box
sx={{ display: 'flex', alignItems: 'center' }}
onClick={(e) => e.stopPropagation()}
Expand All @@ -157,15 +157,13 @@ function InvocationOutputTable({ indexifyServiceURL, invocationId, namespace, co
<Table size="small">
<TableHead>
<TableRow>
<TableCell>Compute Function</TableCell>
<TableCell>ID</TableCell>
<TableCell>Created At</TableCell>
</TableRow>
</TableHead>
<TableBody>
{outputs.map((output, idx) => (
<TableRow key={idx}>
<TableCell>{output.compute_fn}</TableCell>
<TableCell>{output.id}</TableCell>
<TableCell>{formatTimestamp(output.created_at)}</TableCell>
</TableRow>
Expand Down

0 comments on commit 2b441c0

Please sign in to comment.