Skip to content

Commit

Permalink
Bug 1275902 - fix help text for name field on create from image
Browse files Browse the repository at this point in the history
  • Loading branch information
jwforres committed Feb 2, 2016
1 parent a40cea5 commit fb2e7d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion assets/app/views/create/fromimage.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
autocapitalize="off"
spellcheck="false">
</div>
<div class="help-block">Used to uniquely identify within this project all the resources created to support the application.</div>
<div class="help-block">Identifies the resources created for this application.</div>
<div class="has-error" ng-show="form.appname.$error.required && form.appname.$dirty">
<span class="help-block">A name is required.</span>
</div>
Expand Down
2 changes: 1 addition & 1 deletion pkg/assets/bindata.go
Original file line number Diff line number Diff line change
Expand Up @@ -9641,7 +9641,7 @@ var _scriptsTemplatesJs = []byte(`angular.module('openshiftConsoleTemplates', []
"<div ng-class=\"{'has-error': (form.appname.$error.required && form.appname.$dirty) || (form.appname.$invalid && shouldValidateName) || nameTaken}\">\n" +
"<input type=\"text\" required take-focus minlength=\"2\" maxlength=\"24\" pattern=\"[a-z]([-a-z0-9]*[a-z0-9])?\" ng-model=\"name\" id=\"appname\" name=\"appname\" ng-change=\"nameTaken = false\" ng-blur=\"shouldValidateName = form.appname.$dirty\" class=\"form-control\" autocorrect=\"off\" autocapitalize=\"off\" spellcheck>\n" +
"</div>\n" +
"<div class=\"help-block\">Used to uniquely identify within this project all the resources created to support the application.</div>\n" +
"<div class=\"help-block\">Identifies the resources created for this application.</div>\n" +
"<div class=\"has-error\" ng-show=\"form.appname.$error.required && form.appname.$dirty\">\n" +
"<span class=\"help-block\">A name is required.</span>\n" +
"</div>\n" +
Expand Down

0 comments on commit fb2e7d0

Please sign in to comment.