aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/bug/SetTitleFragment.graphql
diff options
context:
space:
mode:
authorludovicm67 <ludovicmuller1@gmail.com>2020-02-12 23:09:45 +0100
committerludovicm67 <ludovicmuller1@gmail.com>2020-02-12 23:09:45 +0100
commitd0a6da286a28e79ae3bb75af41219c4cc4df20b0 (patch)
treec02a2641c78331a45af4623613136f4cdc51af17 /webui/src/bug/SetTitleFragment.graphql
parentc2d18b3a9bec9933d2845ce3cfc6dd5b4f3ff348 (diff)
downloadgit-bug-d0a6da286a28e79ae3bb75af41219c4cc4df20b0.tar.gz
webui: finish TypeScript conversion
Diffstat (limited to 'webui/src/bug/SetTitleFragment.graphql')
-rw-r--r--webui/src/bug/SetTitleFragment.graphql12
1 files changed, 5 insertions, 7 deletions
diff --git a/webui/src/bug/SetTitleFragment.graphql b/webui/src/bug/SetTitleFragment.graphql
index a15c3eb3..432c4449 100644
--- a/webui/src/bug/SetTitleFragment.graphql
+++ b/webui/src/bug/SetTitleFragment.graphql
@@ -1,10 +1,8 @@
#import "../Author.graphql"
-fragment SetTitle on TimelineItem {
- ... on SetTitleTimelineItem {
- date
- ...authored
- title
- was
- }
+fragment SetTitle on SetTitleTimelineItem {
+ date
+ ...authored
+ title
+ was
}