diff options
author | Michael Muré <batolettre@gmail.com> | 2018-08-08 19:05:34 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-08-08 19:05:34 +0200 |
commit | b8e9e581b193d32684c685aa73a6890385f879c3 (patch) | |
tree | 770a6a020eb2a2dd1ff6e39909b07c3b74637d67 /webui/src/Bug.js | |
parent | ca4c829ed0416f146d890fc11b2c3c07104c13d2 (diff) | |
download | git-bug-b8e9e581b193d32684c685aa73a6890385f879c3.tar.gz |
webui: fix graphql queries
Diffstat (limited to 'webui/src/Bug.js')
-rw-r--r-- | webui/src/Bug.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webui/src/Bug.js b/webui/src/Bug.js index f8699fc4..bca23e58 100644 --- a/webui/src/Bug.js +++ b/webui/src/Bug.js @@ -26,7 +26,7 @@ const Bug = ({ bug, classes }) => ( Bug.fragment = gql` fragment Bug on Bug { ...BugSummary - comments(input: { first: 10 }) { + comments(first: 10) { edges { cursor node { |