From 25a1f4df558c042af5129fc5d0f30a491e8b8da9 Mon Sep 17 00:00:00 2001 From: Cláudio Date: Tue, 2 Feb 2021 09:00:01 -0300 Subject: Commit for #535 --- webui/src/components/BugTitleForm/SetTitle.graphql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 webui/src/components/BugTitleForm/SetTitle.graphql (limited to 'webui/src/components/BugTitleForm/SetTitle.graphql') diff --git a/webui/src/components/BugTitleForm/SetTitle.graphql b/webui/src/components/BugTitleForm/SetTitle.graphql new file mode 100644 index 00000000..4bc4656c --- /dev/null +++ b/webui/src/components/BugTitleForm/SetTitle.graphql @@ -0,0 +1,7 @@ +mutation setTitle($input: SetTitleInput!) { + setTitle(input: $input) { + bug { + humanId + } + } +} \ No newline at end of file -- cgit From 52ada2dba15012f0b5868d4eacf922efbf4a19c8 Mon Sep 17 00:00:00 2001 From: Cláudio Date: Tue, 2 Feb 2021 19:29:02 -0300 Subject: fix #544 - Fixing code review requests --- webui/src/components/BugTitleForm/SetTitle.graphql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'webui/src/components/BugTitleForm/SetTitle.graphql') diff --git a/webui/src/components/BugTitleForm/SetTitle.graphql b/webui/src/components/BugTitleForm/SetTitle.graphql index 4bc4656c..b96af155 100644 --- a/webui/src/components/BugTitleForm/SetTitle.graphql +++ b/webui/src/components/BugTitleForm/SetTitle.graphql @@ -1,7 +1,7 @@ mutation setTitle($input: SetTitleInput!) { setTitle(input: $input) { bug { - humanId + id } } } \ No newline at end of file -- cgit