webui: fix graphql queries

Michael Muré created

Change summary

webui/packed_assets.go | 8 ++++----
webui/src/Bug.js       | 2 +-
webui/src/ListPage.js  | 2 +-
3 files changed, 6 insertions(+), 6 deletions(-)

Detailed changes

webui/packed_assets.go 🔗

@@ -21,64 +21,64 @@ var WebUIAssets = func() http.FileSystem {
 	fs := vfsgen۰FS{
 		"/": &vfsgen۰DirInfo{
 			name:    "/",
-			modTime: time.Date(2018, 8, 6, 12, 12, 50, 500208387, time.UTC),
+			modTime: time.Date(2018, 8, 8, 17, 0, 5, 812171708, time.UTC),
 		},
 		"/asset-manifest.json": &vfsgen۰CompressedFileInfo{
 			name:             "asset-manifest.json",
-			modTime:          time.Date(2018, 8, 6, 12, 12, 50, 404205812, time.UTC),
+			modTime:          time.Date(2018, 8, 8, 17, 0, 5, 608173974, time.UTC),
 			uncompressedSize: 96,
 
-			compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xaa\xe6\x52\x50\x50\xca\x4d\xcc\xcc\xd3\xcb\x2a\x56\xb2\x52\x50\x2a\x2e\x49\x2c\xc9\x4c\xd6\xcf\x2a\xd6\x07\x0b\x1a\x98\x9b\x1b\x9b\x18\x9b\x59\x82\x64\x75\x90\x94\xea\xe5\x26\x16\xe0\x57\x0e\x56\xc1\x55\x0b\x08\x00\x00\xff\xff\x38\x8c\x8d\x35\x60\x00\x00\x00"),
+			compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xaa\xe6\x52\x50\x50\xca\x4d\xcc\xcc\xd3\xcb\x2a\x56\xb2\x52\x50\x2a\x2e\x49\x2c\xc9\x4c\xd6\xcf\x2a\xd6\x07\x0b\x9a\x58\x24\x1b\xa5\x1a\x58\x9a\x82\x64\x75\x90\x94\xea\xe5\x26\x16\xe0\x57\x0e\x56\xc1\x55\x0b\x08\x00\x00\xff\xff\xf7\xc2\x31\xef\x60\x00\x00\x00"),
 		},
 		"/favicon.ico": &vfsgen۰CompressedFileInfo{
 			name:             "favicon.ico",
-			modTime:          time.Date(2018, 8, 6, 12, 12, 43, 824029330, time.UTC),
+			modTime:          time.Date(2018, 8, 8, 16, 59, 55, 448286873, time.UTC),
 			uncompressedSize: 3870,
 

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 {

webui/src/ListPage.js 🔗

@@ -10,7 +10,7 @@ import BugSummary from "./BugSummary";
 const QUERY = gql`
   {
     defaultRepository {
-      bugs: allBugs(input: { first: 10 }) {
+      bugs: allBugs(first: 10) {
         edges {
           cursor
           node {