Skip to content

Commit 36b4b39

Browse files
authored
Merge pull request #564 from GSA/fix-template-when-None
Fix Template Bug
2 parents 4a0d461 + 66f286e commit 36b4b39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/templates/view_source_data.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ <h2>Configuration:</h2>
4040
{% elif key == 'notification_emails' %}
4141
{% if session['user'] %}
4242
<td>Notification emails:</td>
43-
<td>{{value|join(', ')}}</td>
43+
<td>{{value | default('N/A', true) | join(', ')}}</td>
4444
{% endif %}
4545
{% elif key == 'url' %}
4646
<td>{{key}}:</td>

0 commit comments

Comments
 (0)