Skip to content

Commit

Permalink
nit
Browse files Browse the repository at this point in the history
Signed-off-by: Kevin Su <[email protected]>
  • Loading branch information
pingsutw committed Oct 18, 2023
1 parent 1a1d357 commit c79b2fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const NodeExecutionInputs: React.FC<{
map={executionData.value.fullInputs}
mapTaskIndex={taskIndex}
/>
{executionData.value.fullInputs && executionData.value.fullInputs.literals && (
{executionData.value.fullInputs?.literals && (
<ExecutionNodeURL

Check warning on line 24 in packages/console/src/components/Executions/ExecutionDetails/NodeExecutionTabs/NodeExecutionInputs.tsx

View check run for this annotation

Codecov / codecov/patch

packages/console/src/components/Executions/ExecutionDetails/NodeExecutionTabs/NodeExecutionInputs.tsx#L23-L24

Added lines #L23 - L24 were not covered by tests
nodeExecutionId={execution.id}
suffix="i"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const NodeExecutionOutputs: React.FC<{
map={executionData.value.fullOutputs}
mapTaskIndex={taskIndex}
/>
{executionData.value.fullOutputs && executionData.value.fullOutputs.literals && (
{executionData.value.fullOutputs?.literals && (
<ExecutionNodeURL

Check warning on line 24 in packages/console/src/components/Executions/ExecutionDetails/NodeExecutionTabs/NodeExecutionOutputs.tsx

View check run for this annotation

Codecov / codecov/patch

packages/console/src/components/Executions/ExecutionDetails/NodeExecutionTabs/NodeExecutionOutputs.tsx#L23-L24

Added lines #L23 - L24 were not covered by tests
nodeExecutionId={execution.id}
suffix="o"
Expand Down

0 comments on commit c79b2fa

Please sign in to comment.