mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-01-29 18:52:22 +01:00
[bug] unable to select a group in profile completion screen
This commit is contained in:
parent
63bdd85657
commit
29eb248029
@ -46,6 +46,7 @@
|
||||
- Fix a bug: logs are not printed in staging environment
|
||||
- Fix a bug: theme colors must be selected twice before the changes became effective
|
||||
- Fix a bug: datepicker does not work in profile completion screen
|
||||
- Fix a bug: unable to select a group in profile completion screen
|
||||
- Fix a security issue: updated loofah to fix [CVE-2019-15587](https://github.com/advisories/GHSA-c3gv-9cxf-6f57)
|
||||
- Fix a security issue: updated angular to 1.7.9 to fix [CVE-2019-10768](https://github.com/advisories/GHSA-89mq-4x47-5v83)
|
||||
- Fix a security issue: updated puma to 3.12.2 to fix [GHSA-7xx3-m584-x994](https://github.com/advisories/GHSA-7xx3-m584-x994)
|
||||
|
@ -77,10 +77,11 @@
|
||||
<i class="fa fa-asterisk" aria-hidden="true"></i>
|
||||
</span>
|
||||
</span>
|
||||
<select ng-model="user.group_id" class="form-control" name="user[group_id]" required>
|
||||
<select ng-model="user.group_id" class="form-control" required>
|
||||
<option value=null translate>{{ 'app.logged.profile_completion.your_user_s_profile' }}</option>
|
||||
<option ng-repeat="group in groups" ng-value="group.id" ng-selected="group.id == user.group_id">{{group.name}}</option>
|
||||
</select>
|
||||
<input type="hidden" name="user[group_id]" ng-value="user.group_id">
|
||||
</div>
|
||||
<span class="help-block" ng-show="userForm['user[group_id]'].$dirty && userForm['user[group_id]'].$error.required" translate>{{ 'app.logged.profile_completion.user_s_profile_is_required' }}</span>
|
||||
</div>
|
||||
|
Loading…
x
Reference in New Issue
Block a user