Commit 252b7b12 authored by Kerri Miller's avatar Kerri Miller

Merge branch '299489-add-descriptions-to-ui-component-size-enum' into 'master'

Add descriptions to UiComponentSizeEnum

See merge request gitlab-org/gitlab!54184
parents e18b4948 d72fad9c
...@@ -7,9 +7,9 @@ module Types ...@@ -7,9 +7,9 @@ module Types
graphql_name 'SastUiComponentSize' graphql_name 'SastUiComponentSize'
description 'Size of UI component in SAST configuration page' description 'Size of UI component in SAST configuration page'
value 'SMALL' value 'SMALL', description: "The size of UI component in SAST configuration page is small."
value 'MEDIUM' value 'MEDIUM', description: "The size of UI component in SAST configuration page is medium."
value 'LARGE' value 'LARGE', description: "The size of UI component in SAST configuration page is large."
end end
end end
end end
......
...@@ -23865,8 +23865,19 @@ type SastCiConfigurationOptionsEntityEdge { ...@@ -23865,8 +23865,19 @@ type SastCiConfigurationOptionsEntityEdge {
Size of UI component in SAST configuration page Size of UI component in SAST configuration page
""" """
enum SastUiComponentSize { enum SastUiComponentSize {
"""
The size of UI component in SAST configuration page is large.
"""
LARGE LARGE
"""
The size of UI component in SAST configuration page is medium.
"""
MEDIUM MEDIUM
"""
The size of UI component in SAST configuration page is small.
"""
SMALL SMALL
} }
......
...@@ -68702,19 +68702,19 @@ ...@@ -68702,19 +68702,19 @@
"enumValues": [ "enumValues": [
{ {
"name": "SMALL", "name": "SMALL",
"description": null, "description": "The size of UI component in SAST configuration page is small.",
"isDeprecated": false, "isDeprecated": false,
"deprecationReason": null "deprecationReason": null
}, },
{ {
"name": "MEDIUM", "name": "MEDIUM",
"description": null, "description": "The size of UI component in SAST configuration page is medium.",
"isDeprecated": false, "isDeprecated": false,
"deprecationReason": null "deprecationReason": null
}, },
{ {
"name": "LARGE", "name": "LARGE",
"description": null, "description": "The size of UI component in SAST configuration page is large.",
"isDeprecated": false, "isDeprecated": false,
"deprecationReason": null "deprecationReason": null
} }
...@@ -5472,9 +5472,9 @@ Size of UI component in SAST configuration page. ...@@ -5472,9 +5472,9 @@ Size of UI component in SAST configuration page.
| Value | Description | | Value | Description |
| ----- | ----------- | | ----- | ----------- |
| `LARGE` | | | `LARGE` | The size of UI component in SAST configuration page is large. |
| `MEDIUM` | | | `MEDIUM` | The size of UI component in SAST configuration page is medium. |
| `SMALL` | | | `SMALL` | The size of UI component in SAST configuration page is small. |
### SecurityReportTypeEnum ### SecurityReportTypeEnum
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment