diff --git a/src/components/BuildList/index.tsx b/src/components/BuildList/index.tsx index ff63a6d9..0a703606 100644 --- a/src/components/BuildList/index.tsx +++ b/src/components/BuildList/index.tsx @@ -44,6 +44,7 @@ const useStyles = makeStyles(() => visibility: "hidden", }, listItem: { + paddingRight: 48, "&:hover $listItemSecondaryAction": { visibility: "inherit", }, diff --git a/src/components/TestDetailsDialog/TestDetailsModal.tsx b/src/components/TestDetailsDialog/TestDetailsModal.tsx index 037a75c6..bc3e1ac8 100644 --- a/src/components/TestDetailsDialog/TestDetailsModal.tsx +++ b/src/components/TestDetailsDialog/TestDetailsModal.tsx @@ -59,6 +59,7 @@ const useStyles = makeStyles(() => ({ textAlign: "left", background: "#efefef", paddingLeft: 8, + paddingBottom: 8, }, footer: { background: "#efefef", @@ -465,6 +466,7 @@ const TestDetailsModal: React.FunctionComponent = ({ const baselinePanel = () => ( item.status); + const filterOptions: Array = Array.from( + new Set(testRuns.map((item) => item.status)), + ); return ( diff --git a/src/components/TestRunList/index.tsx b/src/components/TestRunList/index.tsx index 844c9c87..3f3e8d58 100644 --- a/src/components/TestRunList/index.tsx +++ b/src/components/TestRunList/index.tsx @@ -57,7 +57,7 @@ const columnsDef: GridColDef[] = [ }, renderCell: (params: GridCellParams) => ( - {params.row["tags"] + {params.formattedValue ?.toString() .split(";") .map(