Skip to content

Commit 64ef5e0

Browse files
committed
Can't use class "label" as it conflicts with bootstrap
1 parent c31d7f9 commit 64ef5e0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/resources/templates/workflow.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ <h2>Inputs</h2>
208208
<thead>
209209
<th>ID</th>
210210
<th>Type</th>
211-
<th>Label</th>
211+
<th>Title</th>
212212
<th>Doc</th>
213213
</thead>
214214
<tbody>
@@ -218,7 +218,7 @@ <h2>Inputs</h2>
218218
<a th:if="${input.value.format != null}" th:href="@{${input.value.format}}" th:text="${input.value.type}" target="_blank" rel="noopener">Type</a>
219219
<span th:if="${input.value.format == null}" th:text="${input.value.type}"></span>
220220
</td>
221-
<td class="label" th:text="${input.value.label}">Label</td>
221+
<td class="title" th:text="${input.value.label}">Title</td>
222222
<td class="doc" >
223223
<p th:if="${input.value.doc != null}" th:utext="${#strings.replace( #strings.escapeXml(input.value.doc),T(java.lang.System).getProperty('line.separator')+T(java.lang.System).getProperty('line.separator'),'&lt;br /&gt;&lt;br /&gt;')}">Description might be a bit longer</p>
224224
</td>
@@ -253,7 +253,7 @@ <h2>Steps</h2>
253253
<span th:text="${step.value.run} + ' (?)'" class="notFound" data-tooltip="true" title="Not Found - Must be somewhere within this repository">workflow.cwl (?)</span>
254254
</div>
255255
</td>
256-
<td class="label" th:text="${step.value.label}">Label</td>
256+
<td class="title" th:text="${step.value.label}">Title</td>
257257
<td class="doc">
258258
<p th:if="${step.value.doc != null}" th:utext="${#strings.replace( #strings.escapeXml(step.value.doc),T(java.lang.System).getProperty('line.separator')+T(java.lang.System).getProperty('line.separator'),'&lt;br /&gt;&lt;br /&gt;')}">Description might be a bit longer</p>
259259
</td>
@@ -282,7 +282,7 @@ <h2>Outputs</h2>
282282
<a th:if="${output.value.format != null}" th:href="@{${output.value.format}}" th:text="${output.value.type}" target="_blank" rel="noopener">Type</a>
283283
<span th:if="${output.value.format == null}" th:text="${output.value.type}"></span>
284284
</td>
285-
<td class="label" th:text="${output.value.label}">Label</td>
285+
<td class="title" th:text="${output.value.label}">Title</td>
286286
<td class="doc">
287287
<p th:if="${output.value.doc != null}" th:utext="${#strings.replace(#strings.escapeXml(output.value.doc),T(java.lang.System).getProperty('line.separator')+T(java.lang.System).getProperty('line.separator'),'&lt;br /&gt;&lt;br /&gt;')}">Description might be a bit longer</p>
288288
</td>

0 commit comments

Comments
 (0)