mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-28 09:24:24 +01:00
[bug] unable to create or edit a plan
This commit is contained in:
parent
3ec8923c58
commit
93dd1491cd
@ -5,6 +5,7 @@
|
||||
- Fix ES upgrade: when docker-compose file is using ${PWD}, the ES config volume is attached to the wrong container
|
||||
- Fixed environment documentation references for external locales
|
||||
- Fix a bug: unable to fetch projects from OpenProjects (#126)
|
||||
- Fix a bug: unable to create or edit a plan
|
||||
|
||||
## v2.8.0 2018 December 27
|
||||
|
||||
|
@ -35,7 +35,7 @@
|
||||
ng-disabled="method == 'PATCH'">
|
||||
<option value="all" translate>{{ 'plan_form.transversal_(all_groups)' }}</option>
|
||||
<optgroup label="Groupes">
|
||||
<option ng-repeat="group in groups" ng-value="group.id" ng-selected="plan.group_id == group.id">{{group.name}}</option>
|
||||
<option ng-repeat="group in groups" value="{{group.id}}" ng-selected="plan.group_id == group.id">{{group.name}}</option>
|
||||
</optgroup>
|
||||
</select>
|
||||
<span class="help-block" ng-show="planForm['plan[group_id]'].$dirty && planForm['plan[group_id]'].$error.required" translate>{{ 'plan_form.group_is_required' }}</span>
|
||||
|
Loading…
Reference in New Issue
Block a user