We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8f932a2 + 3be7662 commit e6e3402Copy full SHA for e6e3402
src/_includes/components/actions-fields.html
@@ -96,7 +96,7 @@
96
<tbody>
97
{% for field in action.fields %}
98
<tr>
99
-<td>{{field.label}}</td>
+<td>{{field.label}}{% if field.required %}<span class="required" title="This field is required">*</span>{% endif %}</td>
100
<td>{% if field.type %}Type: <code>{{field.type}}</code><br />{%endif%}{{field.description | markdownify}}</td>
101
</tr>
102
{%endfor%}
src/_sass/components/_markdown.scss
@@ -430,3 +430,9 @@ div.highlighter-rouge {
430
.table-code-snippet {
431
max-width: 450px;
432
}
433
+
434
+.required {
435
+ color: black;
436
+ font-weight: bold;
437
+ margin-left: 3px
438
+}
0 commit comments