Skip to content

Commit a05eadc

Browse files
author
Mark Robinson
committed
Include types for outputs
1 parent 09b106e commit a05eadc

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/main/resources/templates/workflow.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,12 +143,14 @@ <h2>Outputs</h2>
143143
<table class="table table-striped">
144144
<thead>
145145
<th>ID</th>
146+
<th>Type</th>
146147
<th>Label</th>
147148
<th>Doc</th>
148149
</thead>
149150
<tbody>
150151
<tr th:each="output : ${workflow.outputs}">
151152
<td th:text="${output.key}">ID</td>
153+
<td th:text="${output.value.type}">Type</td>
152154
<td th:text="${output.value.label}">Label</td>
153155
<td th:text="${output.value.doc}">Description</td>
154156
</tr>

0 commit comments

Comments
 (0)