1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-10-28 04:42:29 +01:00

Merge pull request #605 from KasperFranz/bug/newVariablePopulate

using the placeholder value if nothing is specified in rules on a new…
This commit is contained in:
Jakob 2017-09-12 23:53:56 +02:00 committed by GitHub
commit 07a388cb93
2 changed files with 4 additions and 1 deletions

View File

@ -9,6 +9,9 @@ This project follows [Semantic Versioning](http://semver.org) guidelines.
* Support for CS:GO as a default service option selection. * Support for CS:GO as a default service option selection.
* Support for GMOD as a default service option selection. * Support for GMOD as a default service option selection.
### Fixed
* Using default value in rules when creating a new variable if the rules is empty.
## v0.6.4 (Courageous Carniadactylus) ## v0.6.4 (Courageous Carniadactylus)
### Fixed ### Fixed
* Fixed the console rendering on page load, I guess people don't like watching it load line-by-line for 10 minutes. Who would have guessed... * Fixed the console rendering on page load, I guess people don't like watching it load line-by-line for 10 minutes. Who would have guessed...

View File

@ -139,7 +139,7 @@
</div> </div>
<div class="form-group"> <div class="form-group">
<label class="form-label">Input Rules</label> <label class="form-label">Input Rules</label>
<input type="text" name="rules" class="form-control" placeholder="required|string|max:20" /> <input type="text" name="rules" class="form-control" value="required|string|max:20" placeholder="required|string|max:20" />
<p class="text-muted small">These rules are defined using standard Laravel Framework validation rules.</p> <p class="text-muted small">These rules are defined using standard Laravel Framework validation rules.</p>
</div> </div>
</div> </div>