Skip to content

Commit c5f8b94

Browse files
author
markzegarelli
committed
Support hidden fields
1 parent 0abbaae commit c5f8b94

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/_includes/components/actions-fields.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,10 +117,12 @@
117117
</thead>
118118
<tbody>
119119
{% for field in action.fields %}
120+
{% unless field.type == "HIDDEN" %}
120121
<tr>
121122
<td>{{field.label}}{% if field.required %}<span class="required" title="This field is required">*</span>{% endif %}</td>
122123
<td>{% if field.type %}Type: <code>{{field.type}}</code><br />{%endif%}{{field.description | markdownify}}</td>
123124
</tr>
125+
{% endunless %}
124126
{%endfor%}
125127
</tbody>
126128
</table>

0 commit comments

Comments
 (0)