diff --git a/src/components/pipeline/PipelineTable.tsx b/src/components/pipeline/PipelineTable.tsx index ed87c9e..6bed45e 100644 --- a/src/components/pipeline/PipelineTable.tsx +++ b/src/components/pipeline/PipelineTable.tsx @@ -1,4 +1,4 @@ -import { Checkbox, MenuItem } from '@blueprintjs/core'; +import { Checkbox, MenuItem, Tooltip } from '@blueprintjs/core'; import { Select } from '@blueprintjs/select'; import styled from '@emotion/styled'; import { @@ -173,7 +173,6 @@ function PipelineTable({ identifier }: PipelineTableProps) { - @@ -181,12 +180,23 @@ function PipelineTable({ identifier }: PipelineTableProps) { {pipeline.map((operation, index) => ( - - {'options' in operation ? ( - - ) : ( - - )} + + +
+ {'options' in operation + ? JSON.stringify(operation.options, null, 2) + : 'N/A'} +
+
+ } + > + {operation.type} + +