diff options
Diffstat (limited to 'webui/src/list')
-rw-r--r-- | webui/src/list/BugRow.js | 8 |
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; |