mirror of
https://github.com/GSA/notifications-admin.git
synced 2025-12-10 23:23:27 -05:00
Fix None rendering in empty email field
This commit is contained in:
committed by
Alex Janousek
parent
f57ad08007
commit
bdc6db1d66
@@ -117,7 +117,7 @@
|
||||
<div class="usa-form-group">
|
||||
<label class="usa-label" for="primary_contact">Primary Contact Email</label>
|
||||
<input class="usa-input" type="email" id="primary_contact" name="primary_contact"
|
||||
value="{{ edit_service_data.primary_contact }}" placeholder="email@example.com">
|
||||
value="{{ edit_service_data.primary_contact|default('') }}" placeholder="email@example.com">
|
||||
</div>
|
||||
|
||||
<fieldset class="usa-fieldset">
|
||||
|
||||
Reference in New Issue
Block a user