diff options
-rw-r--r-- | server/sonar-web/src/main/webapp/WEB-INF/app/views/project/key.html.erb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/sonar-web/src/main/webapp/WEB-INF/app/views/project/key.html.erb b/server/sonar-web/src/main/webapp/WEB-INF/app/views/project/key.html.erb index 541918c5f15..0ae01cfeea0 100644 --- a/server/sonar-web/src/main/webapp/WEB-INF/app/views/project/key.html.erb +++ b/server/sonar-web/src/main/webapp/WEB-INF/app/views/project/key.html.erb @@ -17,7 +17,7 @@ <h1 class="page-title"><%= message('update_key.page') -%></h1> <p class="page-description"><%= message('update_key.page.description') -%></p> </header> - + <% if has_modules %> <h2><%= message('update_key.bulk_update') -%></h2> <br/> @@ -31,12 +31,12 @@ <table> <tr> <td style="padding-right: 20px"><%= message('update_key.replace') -%>:</td> - <td><input type="text" value="" name="string_to_replace" id="string_to_replace" size="40"></td> + <td><input type="text" value="" name="string_to_replace" id="string_to_replace" size="40" maxlength="400"></td> <td class="form-val-note" style="padding-left: 10px;"><%= message('update_key.replace_example') -%></td> </tr> <tr> <td style="padding-right: 20px"><%= message('update_key.by') -%>:</td> - <td><input type="text" value="" name="replacement_string" id="replacement_string" size="40"></td> + <td><input type="text" value="" name="replacement_string" id="replacement_string" size="40" maxlength="400"></td> <td class="form-val-note" style="padding-left: 10px;"><%= message('update_key.by_example') -%></td> </tr> <tr> |