aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/pages/bug/labels/SetLabel.graphql
diff options
context:
space:
mode:
Diffstat (limited to 'webui/src/pages/bug/labels/SetLabel.graphql')
-rw-r--r--webui/src/pages/bug/labels/SetLabel.graphql24
1 files changed, 15 insertions, 9 deletions
diff --git a/webui/src/pages/bug/labels/SetLabel.graphql b/webui/src/pages/bug/labels/SetLabel.graphql
index 44dfae11..6f4ad510 100644
--- a/webui/src/pages/bug/labels/SetLabel.graphql
+++ b/webui/src/pages/bug/labels/SetLabel.graphql
@@ -1,13 +1,19 @@
mutation SetLabel($input: ChangeLabelInput) {
- changeLabels(input: $input) {
- results{
- status,
- label{
- name,
- color{R},
- color{G},
- color{B}
- }
+ changeLabels(input: $input) {
+ results {
+ status
+ label {
+ name
+ color {
+ R
}
+ color {
+ G
+ }
+ color {
+ B
+ }
+ }
}
+ }
}