Skip to content

Commit

Permalink
Removed type info from info tab
Browse files Browse the repository at this point in the history
  • Loading branch information
zonia3000 committed Jan 20, 2025
1 parent 9077943 commit b9b3f8c
Showing 1 changed file with 0 additions and 30 deletions.
30 changes: 0 additions & 30 deletions src/lib/components/v2/workflow/TaskInfoTab.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -42,36 +42,6 @@
<code>{task.command_parallel}</code>
</li>
{/if}
<li class="list-group-item list-group-item-light fw-bold">Input Type</li>
<li class="list-group-item">
<table class="table table-borderless mb-0">
<tbody>
{#each Object.keys(task.input_types) as key}
<tr class="d-flex">
<td><code>{key}</code></td>
<td class="flex-grow">
<BooleanIcon value={task.input_types[key]} />
</td>
</tr>
{/each}
</tbody>
</table>
</li>
<li class="list-group-item list-group-item-light fw-bold">Output Type</li>
<li class="list-group-item">
<table class="table table-borderless mb-0">
<tbody>
{#each Object.keys(task.output_types) as key}
<tr class="d-flex">
<td><code>{key}</code></td>
<td class="flex-grow">
<BooleanIcon value={task.output_types[key]} />
</td>
</tr>
{/each}
</tbody>
</table>
</li>
<li class="list-group-item list-group-item-light fw-bold">Args Schema Version</li>
<li class="list-group-item">
{task.args_schema_version || ''}
Expand Down

0 comments on commit b9b3f8c

Please sign in to comment.