Skip to content

Commit 9686826

Browse files
author
OpenShift Bot
authored
Merge pull request #900 from spadgett/remove-incorrect-minlength-checks
Merged by openshift-bot
2 parents 68cce31 + a374e81 commit 9686826

6 files changed

+24
-13
lines changed

app/views/create-project.html

+10-3
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,21 @@ <h1>New Project</h1>
3838
<div>
3939
<span class="help-block">A unique name for the project.</span>
4040
</div>
41+
<div class="has-error">
42+
<span id="nameHelp" class="help-block" ng-if="createProjectForm.name.$error.minlength && createProjectForm.name.$touched">
43+
Name must have at least two characters.
44+
</span>
45+
</div>
4146
<div class="has-error">
4247
<span id="nameHelp" class="help-block" ng-if="createProjectForm.name.$error.pattern && createProjectForm.name.$touched">
4348
Project names may only contain lower-case letters, numbers, and dashes.
44-
They may not start or end with a dash.</span>
49+
They may not start or end with a dash.
50+
</span>
4551
</div>
4652
<div class="has-error">
47-
<span class="help-block" ng-if="nameTaken">This name is already
48-
in use. Please choose a different name.</span>
53+
<span class="help-block" ng-if="nameTaken">
54+
This name is already in use. Please choose a different name.
55+
</span>
4956
</div>
5057
</div>
5158

app/views/directives/edit-config-map.html

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
ng-required="showNameInput"
1515
ng-pattern="/^[a-z0-9]([-a-z0-9]*[a-z0-9])?$/"
1616
ng-maxlength="63"
17-
ng-minlength="2"
1817
placeholder="my-config-map"
1918
select-on-focus
2019
autocorrect="off"

app/views/directives/osc-autoscaling.html

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
ng-readonly="nameReadOnly"
1414
ng-pattern="/^[a-z0-9]([-a-z0-9]*[a-z0-9])?$/"
1515
ng-maxlength="63"
16-
ng-minlength="2"
1716
placeholder="my-hpa"
1817
select-on-focus
1918
autocorrect="off"

app/views/directives/osc-persistent-volume-claim.html

-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@
4747
ng-required="true"
4848
ng-pattern="/^[a-z0-9]([-a-z0-9]*[a-z0-9])?$/"
4949
ng-maxlength="253"
50-
ng-minlength="2"
5150
placeholder="my-storage-claim"
5251
select-on-focus
5352
autocorrect="off"

app/views/directives/osc-routing.html

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
ng-required="showNameInput"
1515
ng-pattern="/^[a-z0-9]([-a-z0-9]*[a-z0-9])?$/"
1616
ng-maxlength="63"
17-
ng-minlength="2"
1817
placeholder="my-route"
1918
select-on-focus
2019
autocorrect="off"

dist/scripts/templates.js

+14-6
Original file line numberDiff line numberDiff line change
@@ -4169,11 +4169,19 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
41694169
"<span class=\"help-block\">A unique name for the project.</span>\n" +
41704170
"</div>\n" +
41714171
"<div class=\"has-error\">\n" +
4172+
"<span id=\"nameHelp\" class=\"help-block\" ng-if=\"createProjectForm.name.$error.minlength && createProjectForm.name.$touched\">\n" +
4173+
"Name must have at least two characters.\n" +
4174+
"</span>\n" +
4175+
"</div>\n" +
4176+
"<div class=\"has-error\">\n" +
41724177
"<span id=\"nameHelp\" class=\"help-block\" ng-if=\"createProjectForm.name.$error.pattern && createProjectForm.name.$touched\">\n" +
4173-
"Project names may only contain lower-case letters, numbers, and dashes. They may not start or end with a dash.</span>\n" +
4178+
"Project names may only contain lower-case letters, numbers, and dashes. They may not start or end with a dash.\n" +
4179+
"</span>\n" +
41744180
"</div>\n" +
41754181
"<div class=\"has-error\">\n" +
4176-
"<span class=\"help-block\" ng-if=\"nameTaken\">This name is already in use. Please choose a different name.</span>\n" +
4182+
"<span class=\"help-block\" ng-if=\"nameTaken\">\n" +
4183+
"This name is already in use. Please choose a different name.\n" +
4184+
"</span>\n" +
41774185
"</div>\n" +
41784186
"</div>\n" +
41794187
"<div class=\"form-group\">\n" +
@@ -5872,7 +5880,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
58725880
"<label for=\"config-map-name\" class=\"required\">Name</label>\n" +
58735881
"\n" +
58745882
"<div ng-class=\"{ 'has-error': configMapForm.name.$invalid && configMapForm.name.$touched }\">\n" +
5875-
"<input id=\"config-map-name\" class=\"form-control\" type=\"text\" name=\"name\" ng-model=\"configMap.metadata.name\" ng-required=\"showNameInput\" ng-pattern=\"/^[a-z0-9]([-a-z0-9]*[a-z0-9])?$/\" ng-maxlength=\"63\" ng-minlength=\"2\" placeholder=\"my-config-map\" select-on-focus autocorrect=\"off\" autocapitalize=\"off\" spellcheck=\"false\" aria-describedby=\"config-map-name-help\">\n" +
5883+
"<input id=\"config-map-name\" class=\"form-control\" type=\"text\" name=\"name\" ng-model=\"configMap.metadata.name\" ng-required=\"showNameInput\" ng-pattern=\"/^[a-z0-9]([-a-z0-9]*[a-z0-9])?$/\" ng-maxlength=\"63\" placeholder=\"my-config-map\" select-on-focus autocorrect=\"off\" autocapitalize=\"off\" spellcheck=\"false\" aria-describedby=\"config-map-name-help\">\n" +
58765884
"</div>\n" +
58775885
"<div>\n" +
58785886
"<span id=\"config-map-name-help\" class=\"help-block\">A unique name for the config map within the project.</span>\n" +
@@ -6660,7 +6668,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
66606668
"<div ng-show=\"showNameInput\" class=\"form-group\">\n" +
66616669
"<label for=\"hpa-name\" class=\"required\">Autoscaler Name</label>\n" +
66626670
"<span ng-class=\"{ 'has-error': form.name.$touched && form.name.$invalid }\">\n" +
6663-
"<input id=\"hpa-name\" class=\"form-control\" type=\"text\" name=\"name\" ng-model=\"autoscaling.name\" ng-required=\"showNameInput\" ng-readonly=\"nameReadOnly\" ng-pattern=\"/^[a-z0-9]([-a-z0-9]*[a-z0-9])?$/\" ng-maxlength=\"63\" ng-minlength=\"2\" placeholder=\"my-hpa\" select-on-focus autocorrect=\"off\" autocapitalize=\"off\" spellcheck=\"false\" aria-describedby=\"hpa-name-help\">\n" +
6671+
"<input id=\"hpa-name\" class=\"form-control\" type=\"text\" name=\"name\" ng-model=\"autoscaling.name\" ng-required=\"showNameInput\" ng-readonly=\"nameReadOnly\" ng-pattern=\"/^[a-z0-9]([-a-z0-9]*[a-z0-9])?$/\" ng-maxlength=\"63\" placeholder=\"my-hpa\" select-on-focus autocorrect=\"off\" autocapitalize=\"off\" spellcheck=\"false\" aria-describedby=\"hpa-name-help\">\n" +
66646672
"</span>\n" +
66656673
"<div>\n" +
66666674
"<span id=\"hpa-name-help\" class=\"help-block\">\n" +
@@ -6978,7 +6986,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
69786986
"\n" +
69796987
"<div class=\"form-group\">\n" +
69806988
"<label for=\"claim-name\" class=\"required\">Name</label>\n" +
6981-
"<input id=\"claim-name\" class=\"form-control\" type=\"text\" name=\"name\" ng-model=\"claim.name\" ng-required=\"true\" ng-pattern=\"/^[a-z0-9]([-a-z0-9]*[a-z0-9])?$/\" ng-maxlength=\"253\" ng-minlength=\"2\" placeholder=\"my-storage-claim\" select-on-focus autocorrect=\"off\" autocapitalize=\"off\" spellcheck=\"false\" aria-describedby=\"claim-name-help\">\n" +
6989+
"<input id=\"claim-name\" class=\"form-control\" type=\"text\" name=\"name\" ng-model=\"claim.name\" ng-required=\"true\" ng-pattern=\"/^[a-z0-9]([-a-z0-9]*[a-z0-9])?$/\" ng-maxlength=\"253\" placeholder=\"my-storage-claim\" select-on-focus autocorrect=\"off\" autocapitalize=\"off\" spellcheck=\"false\" aria-describedby=\"claim-name-help\">\n" +
69826990
"<div>\n" +
69836991
"<span id=\"claim-name-help\" class=\"help-block\">A unique name for the storage claim within the project.</span>\n" +
69846992
"</div>\n" +
@@ -7106,7 +7114,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
71067114
"<div ng-show=\"showNameInput\" class=\"form-group\">\n" +
71077115
"<label for=\"route-name\" class=\"required\">Name</label>\n" +
71087116
"\n" +
7109-
"<input id=\"route-name\" class=\"form-control\" type=\"text\" name=\"name\" ng-model=\"route.name\" ng-required=\"showNameInput\" ng-pattern=\"/^[a-z0-9]([-a-z0-9]*[a-z0-9])?$/\" ng-maxlength=\"63\" ng-minlength=\"2\" placeholder=\"my-route\" select-on-focus autocorrect=\"off\" autocapitalize=\"off\" spellcheck=\"false\" aria-describedby=\"route-name-help\">\n" +
7117+
"<input id=\"route-name\" class=\"form-control\" type=\"text\" name=\"name\" ng-model=\"route.name\" ng-required=\"showNameInput\" ng-pattern=\"/^[a-z0-9]([-a-z0-9]*[a-z0-9])?$/\" ng-maxlength=\"63\" placeholder=\"my-route\" select-on-focus autocorrect=\"off\" autocapitalize=\"off\" spellcheck=\"false\" aria-describedby=\"route-name-help\">\n" +
71107118
"<div>\n" +
71117119
"<span id=\"route-name-help\" class=\"help-block\">A unique name for the route within the project.</span>\n" +
71127120
"</div>\n" +

0 commit comments

Comments
 (0)