aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/list/BugRow.js
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2019-05-22 23:31:46 +0200
committerGitHub <noreply@github.com>2019-05-22 23:31:46 +0200
commit8c263465fbd956f2964bb7cd911b5ea5e8d5a50e (patch)
treef6ed073888a8610100f5e79aa44d8bca6a76c723 /webui/src/list/BugRow.js
parent6e20bf0e73862854aea0cd759a880a6b5f473880 (diff)
parent1c2ee10ce7a32df892604846279c7e199ce0ccea (diff)
downloadgit-bug-8c263465fbd956f2964bb7cd911b5ea5e8d5a50e.tar.gz
Merge pull request #149 from MichaelMure/sandhose/authored
graphql: Implement `Authored` whenever possible
Diffstat (limited to 'webui/src/list/BugRow.js')
-rw-r--r--webui/src/list/BugRow.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/webui/src/list/BugRow.js b/webui/src/list/BugRow.js
index cfac4616..c5fc7647 100644
--- a/webui/src/list/BugRow.js
+++ b/webui/src/list/BugRow.js
@@ -9,6 +9,7 @@ import React from 'react';
import { Link } from 'react-router-dom';
import Date from '../Date';
import Label from '../Label';
+import Author from '../Author';
const Open = ({ className }) => (
<Tooltip title="Open">
@@ -97,12 +98,11 @@ BugRow.fragment = gql`
labels {
...Label
}
- author {
- name
- displayName
- }
+ ...authored
}
+
${Label.fragment}
+ ${Author.fragment}
`;
export default BugRow;