diff --git a/src/components/Filters.tsx b/src/components/Filters.tsx index 6f7557da..74ffde83 100644 --- a/src/components/Filters.tsx +++ b/src/components/Filters.tsx @@ -2,13 +2,12 @@ import React from "react"; import { Grid, TextField, - IconButton, Select, MenuItem, FormControl, InputLabel, + Button, } from "@material-ui/core"; -import { Clear } from "@material-ui/icons"; import { TestRun, TestVariation } from "../types"; interface IProps { @@ -70,13 +69,6 @@ const Filters: React.FunctionComponent = ({ label="Name" value={query} onChange={(event) => setQuery(event?.target.value)} - InputProps={{ - endAdornment: ( - setQuery("")}> - - - ), - }} /> {osList.length > 0 && ( @@ -201,6 +193,22 @@ const Filters: React.FunctionComponent = ({ )} + + + );