mirror of
https://github.com/zulip/zulip.git
synced 2026-07-12 21:04:41 +08:00
Removing #full_name IDs.
There was a duplicate #full_name ID being added many times in tables. They should be removed because they are not being called anywhere and should not exist in multiples.
This commit is contained in:
parent
a9e49338de
commit
71dd9387f8
@ -50,7 +50,7 @@
|
||||
<input type="hidden" name="is_full_name" value="true" />
|
||||
<div class="input-group name_change_container">
|
||||
<label for="full_name">{{t "Full name" }}</label>
|
||||
<input type="text" name="full_name" id="full_name" value="{{ full_name }}" />
|
||||
<input type="text" name="full_name" value="{{ full_name }}" />
|
||||
</div>
|
||||
<div class="input-group">
|
||||
<input type="button" class="btn btn-primary submit_name_changes" value="Save Changes" />
|
||||
|
||||
@ -8,7 +8,7 @@
|
||||
class="form-horizontal your-account-settings">
|
||||
<div class="input-group name_change_container">
|
||||
<label for="full_name">{{t "Full name" }}</label>
|
||||
<input type="text" name="full_name" id="full_name" value="{{ page_params.fullname }}" />
|
||||
<input type="text" name="full_name" value="{{ page_params.fullname }}" />
|
||||
</div>
|
||||
|
||||
<!-- password start -->
|
||||
|
||||
Loading…
Reference in New Issue
Block a user