Fix validation error when trying to save certain eggs, closes #829
This commit is contained in:
parent
b9d67459b2
commit
321d00c89e
3 changed files with 3 additions and 2 deletions
|
@ -12,6 +12,7 @@ This project follows [Semantic Versioning](http://semver.org) guidelines.
|
|||
* `[beta.2]` — Fixes bug that caused incorrect rendering of CPU usage on server graphs due to missing variable.
|
||||
* `[beta.2]` — Fixes bug causing schedules to be un-deletable.
|
||||
* `[beta.2]` — Fixes bug that prevented the deletion of nodes due to an allocation deletion cascade issue with the SQL schema.
|
||||
* `[beta.2]` — Fixes a bug causing eggs not extending other eggs to fail validation.
|
||||
|
||||
### Changed
|
||||
* Revoking the administrative status for an admin will revoke all authentication tokens currently assigned to their account.
|
||||
|
|
|
@ -83,7 +83,7 @@
|
|||
<div class="form-group">
|
||||
<label for="pConfigFrom" class="form-label">Copy Settings From</label>
|
||||
<select name="config_from" id="pConfigFrom" class="form-control">
|
||||
<option value="0">None</option>
|
||||
<option value="">None</option>
|
||||
</select>
|
||||
<p class="text-muted small">If you would like to default to settings from another Egg select it from the dropdown above.</p>
|
||||
</div>
|
||||
|
|
|
@ -125,7 +125,7 @@
|
|||
<div class="form-group">
|
||||
<label for="pConfigFrom" class="form-label">Copy Settings From</label>
|
||||
<select name="config_from" id="pConfigFrom" class="form-control">
|
||||
<option value="0">None</option>
|
||||
<option value="">None</option>
|
||||
@foreach($egg->nest->eggs as $o)
|
||||
<option value="{{ $o->id }}" {{ ($egg->config_from !== $o->id) ?: 'selected' }}>{{ $o->name }} <{{ $o->author }}></option>
|
||||
@endforeach
|
||||
|
|
Loading…
Reference in a new issue