1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-02-19 13:54:25 +01:00

[bug] plan edition does not show the associated group

This commit is contained in:
Sylvain 2020-04-28 18:10:12 +02:00
parent abcf17d1e6
commit 81a18704ed
2 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@
- Fix a bug: unable to delete an unreserved event - Fix a bug: unable to delete an unreserved event
- Fix a bug: "Free entry" label for events without reservation - Fix a bug: "Free entry" label for events without reservation
- Fix a bug: updating a setting without any changes triggers an error - Fix a bug: updating a setting without any changes triggers an error
- Fix a bug: plan edition does not show the associated group
## v4.3.4 2020 April 14 ## v4.3.4 2020 April 14

View File

@ -35,7 +35,7 @@
ng-disabled="method == 'PATCH'"> ng-disabled="method == 'PATCH'">
<option value="all" translate>{{ 'app.shared.plan.transversal_all_groups' }}</option> <option value="all" translate>{{ 'app.shared.plan.transversal_all_groups' }}</option>
<optgroup label="Groupes"> <optgroup label="Groupes">
<option ng-repeat="group in groups" value="{{group.id}}" ng-selected="plan.group_id == group.id">{{group.name}}</option> <option ng-repeat="group in groups" ng-value="group.id" ng-selected="plan.group_id == group.id">{{group.name}}</option>
</optgroup> </optgroup>
</select> </select>
<span class="help-block" ng-show="planForm['plan[group_id]'].$dirty && planForm['plan[group_id]'].$error.required" translate>{{ 'app.shared.plan.group_is_required' }}</span> <span class="help-block" ng-show="planForm['plan[group_id]'].$dirty && planForm['plan[group_id]'].$error.required" translate>{{ 'app.shared.plan.group_is_required' }}</span>