summaryrefslogtreecommitdiff
path: root/app/serializers/analytics_summary_entity.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/serializers/analytics_summary_entity.rb')
-rw-r--r--app/serializers/analytics_summary_entity.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/app/serializers/analytics_summary_entity.rb b/app/serializers/analytics_summary_entity.rb
index 57e9225e2da..62828fc1428 100644
--- a/app/serializers/analytics_summary_entity.rb
+++ b/app/serializers/analytics_summary_entity.rb
@@ -8,8 +8,6 @@ class AnalyticsSummaryEntity < Grape::Entity
private
def value
- return object.value if object.value.is_a? String
-
- object.value&.nonzero? ? object.value.to_s : '-'
+ object.value.to_s
end
end