aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/pages/list/BugRow.graphql
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2021-03-21 12:22:24 +0100
committerGitHub <noreply@github.com>2021-03-21 12:22:24 +0100
commit6744cddaa6ed25b9f2c0c61ef9df1823b5e74e6e (patch)
treebc9439f3fd2abb8312768d246fa71182e93ed3e4 /webui/src/pages/list/BugRow.graphql
parente0a7088ba0dca77f616af211a1f9e2158af502c3 (diff)
parentb7ddb22558bd4b429e810157b343ee41a6575945 (diff)
downloadgit-bug-6744cddaa6ed25b9f2c0c61ef9df1823b5e74e6e.tar.gz
Merge pull request #603 from GlancingMind/upstream-28-comment-counter-for-each-bug-on-buglist
Display count of comment for each bug on bug list
Diffstat (limited to 'webui/src/pages/list/BugRow.graphql')
-rw-r--r--webui/src/pages/list/BugRow.graphql3
1 files changed, 3 insertions, 0 deletions
diff --git a/webui/src/pages/list/BugRow.graphql b/webui/src/pages/list/BugRow.graphql
index 547c09d8..e4e2760c 100644
--- a/webui/src/pages/list/BugRow.graphql
+++ b/webui/src/pages/list/BugRow.graphql
@@ -9,5 +9,8 @@ fragment BugRow on Bug {
labels {
...Label
}
+ comments {
+ totalCount
+ }
...authored
}