You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/article-api/templates/audit-logs-page.template.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ Each event below lists only its additional fields beyond these common fields.
26
26
{% for event in events %}
27
27
#### `{{ event.action }}`
28
28
29
-
{{ event.description }}
29
+
{% if event.description and event.description != 'N/A' %}{{ event.description }}{% endif %}
30
30
31
31
{% if event.fields.size > 0 %}**Additional fields:** {% for field in event.fields %}`{{ field }}`{% unless forloop.last %}, {% endunless %}{% endfor %}{% endif %}
0 commit comments