diff --git a/core/client/templates/settings/general.hbs b/core/client/templates/settings/general.hbs index b7bbd963ec..2e7d177132 100644 --- a/core/client/templates/settings/general.hbs +++ b/core/client/templates/settings/general.hbs @@ -56,7 +56,8 @@
- {{input id="postsPerPage" name="general[postsPerPage]" focus-out="checkPostsPerPage" value=postsPerPage min="1" max="1000" type="number"}} + {{! `pattern` brings up numeric keypad allowing any number of digits}} + {{input id="postsPerPage" name="general[postsPerPage]" focus-out="checkPostsPerPage" value=postsPerPage min="1" max="1000" type="number" pattern="[0-9]*"}}

How many posts should be displayed on each page