Skip to content

Commit

Permalink
Address_2 adjustment
Browse files Browse the repository at this point in the history
  • Loading branch information
cassidysymons committed Sep 25, 2023
1 parent 58ffead commit 89f1bbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion microsetta_interface/templates/update_address.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ $(document).ready(function(){
</div>
<div class="form-group mb-2">
<label for="address_2" name="address_2_label">{{ _('Address 2') }}</label>
<input id="address_2" name="address_2" class="form-control" type="text" value="{{ user_info['address_2'] |e }}" />
<input id="address_2" name="address_2" class="form-control" type="text" value="{{ user_info['address_2'] if user_info['address_2'] is not none else '' }}" />
</div>
<div class="form-group mb-2" id="form_group_address_3">
<label for="address_3" name="address_3_label">{{ _('Address 3') }}</label>
Expand Down

0 comments on commit 89f1bbd

Please sign in to comment.