Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Giehl <stefan@piwik.org>2016-11-14 14:49:16 +0300
committerMatthieu Aubry <mattab@users.noreply.github.com>2016-11-14 14:49:16 +0300
commit0bbbf0ee0663d6b97c897aec0e41f11ee710c51f (patch)
tree83ae008bdd153f00239bea8f01f6ae093100a2b0 /plugins/SitesManager/templates
parente4d8bb44a56c1b81be9e218dbdf82be02289d7ac (diff)
Add maxlength attributes to various input boxes (#10829)
* add maxlength attributes to goal input boxes values are limited to that length by database restrictions * limit site name input box to database limit * limit user input boxes to database limits
Diffstat (limited to 'plugins/SitesManager/templates')
-rw-r--r--plugins/SitesManager/templates/sites-list/site-fields.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/SitesManager/templates/sites-list/site-fields.html b/plugins/SitesManager/templates/sites-list/site-fields.html
index 89f4befd81..f448ddbcfc 100644
--- a/plugins/SitesManager/templates/sites-list/site-fields.html
+++ b/plugins/SitesManager/templates/sites-list/site-fields.html
@@ -71,7 +71,7 @@
<div class="form-group row">
<div class="col s12 m6 input-field">
- <input type="text" ng-model="site.name"/>
+ <input type="text" ng-model="site.name" maxlength="90" />
<label>{{ 'General_Name'|translate }}</label>
</div>
<div class="col s12 m6"></div>