Skip to content

Commit

Permalink
do not default-expand outputs for dataStep in graph view
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedhamidawan committed Apr 23, 2024
1 parent 796e65f commit 2d94ba4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<details
v-if="Object.values(stepDetails.outputs).length > 0"
class="invocation-step-output-details"
:open="graphStep !== undefined">
:open="!isDataStep && graphStep !== undefined">
<summary><b>Output Datasets</b></summary>
<div v-for="(value, name) in stepDetails.outputs" :key="value.id">
<b>{{ name }}</b>
Expand All @@ -48,7 +48,7 @@
<details
v-if="Object.values(stepDetails.output_collections).length > 0"
class="invocation-step-output-collection-details"
:open="graphStep !== undefined">
:open="!isDataStep && graphStep !== undefined">
<summary><b>Output Dataset Collections</b></summary>
<div v-for="(value, name) in stepDetails.output_collections" :key="value.id">
<b>{{ name }}</b>
Expand Down

0 comments on commit 2d94ba4

Please sign in to comment.