summaryrefslogtreecommitdiff
path: root/app/helpers/numbers_helper.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/helpers/numbers_helper.rb')
-rw-r--r--app/helpers/numbers_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/numbers_helper.rb b/app/helpers/numbers_helper.rb
index 3c0b11c4d32..862cc032e5a 100644
--- a/app/helpers/numbers_helper.rb
+++ b/app/helpers/numbers_helper.rb
@@ -6,7 +6,7 @@ module NumbersHelper
limit = options.fetch(:limit, 1000).to_i
count = resource.limit(limit + 1).count(:all)
if count > limit
- number_with_delimiter(count - 1, options) + '+'
+ number_with_delimiter(count - 1, options) + "+"
else
number_with_delimiter(count, options)
end