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/work_items/type_type.rb')
-rw-r--r--app/graphql/types/work_items/type_type.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/graphql/types/work_items/type_type.rb b/app/graphql/types/work_items/type_type.rb
index f31bd7ee9ba..4d008a21b9c 100644
--- a/app/graphql/types/work_items/type_type.rb
+++ b/app/graphql/types/work_items/type_type.rb
@@ -8,11 +8,11 @@ module Types
authorize :read_work_item_type
field :icon_name, GraphQL::Types::String, null: true,
- description: 'Icon name of the work item type.'
+ description: 'Icon name of the work item type.'
field :id, Types::GlobalIDType[::WorkItems::Type], null: false,
- description: 'Global ID of the work item type.'
+ description: 'Global ID of the work item type.'
field :name, GraphQL::Types::String, null: false,
- description: 'Name of the work item type.'
+ description: 'Name of the work item type.'
end
end
end