Skip to content
Merged

fixes #326

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/components/BuildList/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ const useStyles = makeStyles(() =>
visibility: "hidden",
},
listItem: {
paddingRight: 48,
"&:hover $listItemSecondaryAction": {
visibility: "inherit",
},
Expand Down
2 changes: 2 additions & 0 deletions src/components/TestDetailsDialog/TestDetailsModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ const useStyles = makeStyles(() => ({
textAlign: "left",
background: "#efefef",
paddingLeft: 8,
paddingBottom: 8,
},
footer: {
background: "#efefef",
Expand Down Expand Up @@ -465,6 +466,7 @@ const TestDetailsModal: React.FunctionComponent<TestDetailsModalProps> = ({
const baselinePanel = () => (
<Grid
item
xs={6}
ref={leftItemRef}
className={classes.drawAreaItem}
alignItems="stretch"
Expand Down
4 changes: 3 additions & 1 deletion src/components/TestRunList/StatusFilterOperators.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ const StatusInputComponent = ({ item, applyValue }: GridFilterInputValueProps) =
});
};

const filterOptions: TestStatus[] = testRuns.map((item: TestRun) => item.status);
const filterOptions: Array<TestStatus> = Array.from(
new Set(testRuns.map((item) => item.status)),
);

return (
<FormControl variant="standard" fullWidth>
Expand Down
2 changes: 1 addition & 1 deletion src/components/TestRunList/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const columnsDef: GridColDef[] = [
},
renderCell: (params: GridCellParams) => (
<React.Fragment>
{params.row["tags"]
{params.formattedValue
?.toString()
.split(";")
.map(
Expand Down