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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/milestone_stats_type.rb')
-rw-r--r--app/graphql/types/milestone_stats_type.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/graphql/types/milestone_stats_type.rb b/app/graphql/types/milestone_stats_type.rb
index e313b880e0d..6d8b7deb8e7 100644
--- a/app/graphql/types/milestone_stats_type.rb
+++ b/app/graphql/types/milestone_stats_type.rb
@@ -7,10 +7,10 @@ module Types
authorize :read_milestone
- field :total_issues_count, GraphQL::INT_TYPE, null: true,
+ field :total_issues_count, GraphQL::Types::Int, null: true,
description: 'Total number of issues associated with the milestone.'
- field :closed_issues_count, GraphQL::INT_TYPE, null: true,
+ field :closed_issues_count, GraphQL::Types::Int, null: true,
description: 'Number of closed issues associated with the milestone.'
end
end