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:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-12-13 18:12:59 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-12-13 18:12:59 +0300
commitaacba12c6e9817b552989de77b54e89b7c863b85 (patch)
tree08baff36c06079f8442d7cd8d5add675da90074f /app/assets/javascripts/work_items
parentb0891151f160d287e48a5317d3152b195ef950ae (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/work_items')
-rw-r--r--app/assets/javascripts/work_items/graphql/typedefs.graphql4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/javascripts/work_items/graphql/typedefs.graphql b/app/assets/javascripts/work_items/graphql/typedefs.graphql
index 8247a0795cf..177eea00322 100644
--- a/app/assets/javascripts/work_items/graphql/typedefs.graphql
+++ b/app/assets/javascripts/work_items/graphql/typedefs.graphql
@@ -33,11 +33,11 @@ type LocalWorkItem {
widgets: [LocalWorkItemWidgetConnection]
}
-type LocalCreateWorkItemInput {
+input LocalCreateWorkItemInput {
title: String!
}
-type LocalUpdateWorkItemInput {
+input LocalUpdateWorkItemInput {
id: ID!
title: String
}