1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-17 06:52:27 +01:00

[bug] unable to dissociate the last machine from a formation

This commit is contained in:
Sylvain 2019-10-01 15:27:59 +02:00
parent 29d6a1daa4
commit 877506b26a
2 changed files with 5 additions and 1 deletions

View File

@ -11,8 +11,9 @@
- Fix a bug: after disabling a group, its associated plans are hidden from the interface - Fix a bug: after disabling a group, its associated plans are hidden from the interface
- Fix a bug: in case of unexpected server error during stripe payment process, the confirm button is not unlocked - Fix a bug: in case of unexpected server error during stripe payment process, the confirm button is not unlocked
- Fix a bug: create a plan does not set its name - Fix a bug: create a plan does not set its name
- Fix a bug: unable to dissociate the last machine from a formation
- [TODO DEPLOY] `rake db:migrate` - [TODO DEPLOY] `rake db:migrate`
- [TODO DEPLOY] -> (only dev) yarn install - [TODO DEPLOY] -> (only dev) `yarn install` and `bundle install`
- [TODO DEPLOY] add the `RECAPTCHA_SITE_KEY` and `RECAPTCHA_SECRET_KEY` environment variables (see [doc/environment.md](doc/environment.md) for configuration details) - [TODO DEPLOY] add the `RECAPTCHA_SITE_KEY` and `RECAPTCHA_SECRET_KEY` environment variables (see [doc/environment.md](doc/environment.md) for configuration details)
- [TODO DEPLOY] add the `MAX_CAO_SIZE` environment variable (see [doc/environment.md](doc/environment.md) for configuration details) - [TODO DEPLOY] add the `MAX_CAO_SIZE` environment variable (see [doc/environment.md](doc/environment.md) for configuration details)
- [TODO DEPLOY] add the `MAX_IMPORT_SIZE` environment variable (see [doc/environment.md](doc/environment.md) for configuration details) - [TODO DEPLOY] add the `MAX_IMPORT_SIZE` environment variable (see [doc/environment.md](doc/environment.md) for configuration details)

View File

@ -76,6 +76,9 @@
<ui-select-choices ui-disable-choice="m.disabled" repeat="m.id as m in (machines | filter: $select.search)"> <ui-select-choices ui-disable-choice="m.disabled" repeat="m.id as m in (machines | filter: $select.search)">
<span ng-bind-html="m.name | highlight: $select.search"></span> <span ng-bind-html="m.name | highlight: $select.search"></span>
</ui-select-choices> </ui-select-choices>
<ui-select-no-choice>
<input type="hidden" name="training[machine_ids][]" value="" />
</ui-select-no-choice>
</ui-select> </ui-select>
</div> </div>
</div> </div>