Commit d72fad9c authored by Subashis's avatar Subashis

Add descriptions to UiComponentSizeEnum

parent c2e4320b
......@@ -7,9 +7,9 @@ module Types
graphql_name 'SastUiComponentSize'
description 'Size of UI component in SAST configuration page'
value 'SMALL'
value 'MEDIUM'
value 'LARGE'
value 'SMALL', description: "The size of UI component in SAST configuration page is small."
value 'MEDIUM', description: "The size of UI component in SAST configuration page is medium."
value 'LARGE', description: "The size of UI component in SAST configuration page is large."
end
end
end
......
......@@ -23632,8 +23632,19 @@ type SastCiConfigurationOptionsEntityEdge {
Size of UI component in SAST configuration page
"""
enum SastUiComponentSize {
"""
The size of UI component in SAST configuration page is large.
"""
LARGE
"""
The size of UI component in SAST configuration page is medium.
"""
MEDIUM
"""
The size of UI component in SAST configuration page is small.
"""
SMALL
}
......
......@@ -68137,19 +68137,19 @@
"enumValues": [
{
"name": "SMALL",
"description": null,
"description": "The size of UI component in SAST configuration page is small.",
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "MEDIUM",
"description": null,
"description": "The size of UI component in SAST configuration page is medium.",
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "LARGE",
"description": null,
"description": "The size of UI component in SAST configuration page is large.",
"isDeprecated": false,
"deprecationReason": null
}
......@@ -5296,9 +5296,9 @@ Size of UI component in SAST configuration page.
| Value | Description |
| ----- | ----------- |
| `LARGE` | |
| `MEDIUM` | |
| `SMALL` | |
| `LARGE` | The size of UI component in SAST configuration page is large. |
| `MEDIUM` | The size of UI component in SAST configuration page is medium. |
| `SMALL` | The size of UI component in SAST configuration page is small. |
### 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