From 6d8559048f9dcbac4ee9f65de54bda4cd1a7431c Mon Sep 17 00:00:00 2001 From: Quentin Gliech Date: Sun, 22 Jul 2018 01:13:06 +0200 Subject: webui: Basic bug list --- webui/src/BugSummary.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'webui/src/BugSummary.js') diff --git a/webui/src/BugSummary.js b/webui/src/BugSummary.js index 461fe2d0..469ab9a8 100644 --- a/webui/src/BugSummary.js +++ b/webui/src/BugSummary.js @@ -1,4 +1,5 @@ import React from "react"; +import { Link } from "react-router-dom"; import gql from "graphql-tag"; import { withStyles } from "@material-ui/core/styles"; @@ -28,7 +29,8 @@ const BugSummary = ({ bug, classes }) => ( {bug.title} - #{bug.id.slice(0, 8)} • {bug.status.toUpperCase()} + #{bug.id.slice(0, 8)} •{" "} + {bug.status.toUpperCase()}
{bug.labels.map(label => ( -- cgit