Skip to content

Commit b9b3f8c

Browse files
committed
Removed type info from info tab
1 parent 9077943 commit b9b3f8c

File tree

1 file changed

+0
-30
lines changed

1 file changed

+0
-30
lines changed

src/lib/components/v2/workflow/TaskInfoTab.svelte

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -42,36 +42,6 @@
4242
<code>{task.command_parallel}</code>
4343
</li>
4444
{/if}
45-
<li class="list-group-item list-group-item-light fw-bold">Input Type</li>
46-
<li class="list-group-item">
47-
<table class="table table-borderless mb-0">
48-
<tbody>
49-
{#each Object.keys(task.input_types) as key}
50-
<tr class="d-flex">
51-
<td><code>{key}</code></td>
52-
<td class="flex-grow">
53-
<BooleanIcon value={task.input_types[key]} />
54-
</td>
55-
</tr>
56-
{/each}
57-
</tbody>
58-
</table>
59-
</li>
60-
<li class="list-group-item list-group-item-light fw-bold">Output Type</li>
61-
<li class="list-group-item">
62-
<table class="table table-borderless mb-0">
63-
<tbody>
64-
{#each Object.keys(task.output_types) as key}
65-
<tr class="d-flex">
66-
<td><code>{key}</code></td>
67-
<td class="flex-grow">
68-
<BooleanIcon value={task.output_types[key]} />
69-
</td>
70-
</tr>
71-
{/each}
72-
</tbody>
73-
</table>
74-
</li>
7545
<li class="list-group-item list-group-item-light fw-bold">Args Schema Version</li>
7646
<li class="list-group-item">
7747
{task.args_schema_version || ''}

0 commit comments

Comments
 (0)