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/blob_viewer_type.rb')
-rw-r--r--app/graphql/types/blob_viewer_type.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/app/graphql/types/blob_viewer_type.rb b/app/graphql/types/blob_viewer_type.rb
index 8d863c32bc7..8c565373cfd 100644
--- a/app/graphql/types/blob_viewer_type.rb
+++ b/app/graphql/types/blob_viewer_type.rb
@@ -9,30 +9,30 @@ module Types
description: 'Type of blob viewer.',
null: false
- field :load_async, GraphQL::BOOLEAN_TYPE,
+ field :load_async, GraphQL::Types::Boolean,
description: 'Shows whether the blob content is loaded asynchronously.',
null: false
- field :collapsed, GraphQL::BOOLEAN_TYPE,
+ field :collapsed, GraphQL::Types::Boolean,
description: 'Shows whether the blob should be displayed collapsed.',
method: :collapsed?,
null: false
- field :too_large, GraphQL::BOOLEAN_TYPE,
+ field :too_large, GraphQL::Types::Boolean,
description: 'Shows whether the blob is too large to be displayed.',
method: :too_large?,
null: false
- field :render_error, GraphQL::STRING_TYPE,
+ field :render_error, GraphQL::Types::String,
description: 'Error rendering the blob content.',
null: true
- field :file_type, GraphQL::STRING_TYPE,
+ field :file_type, GraphQL::Types::String,
description: 'Content file type.',
method: :partial_name,
null: false
- field :loading_partial_name, GraphQL::STRING_TYPE,
+ field :loading_partial_name, GraphQL::Types::String,
description: 'Loading partial name.',
null: false