diff options
Diffstat (limited to 'client/components/users')
-rw-r--r-- | client/components/users/userHeader.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/components/users/userHeader.js b/client/components/users/userHeader.js index 65b7e8c3..98053ed1 100644 --- a/client/components/users/userHeader.js +++ b/client/components/users/userHeader.js @@ -106,7 +106,7 @@ Template.changeSettingsPopup.events({ }, 'click .js-apply-show-cards-at'(evt, tpl) { evt.preventDefault(); - const minLimit = parseInt(tpl.$('#show-cards-count-at').val()); + const minLimit = parseInt(tpl.$('#show-cards-count-at').val(), 10); if (!isNaN(minLimit)) { Meteor.call('changeLimitToShowCardsCount', minLimit); Popup.back(); |