X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/b6a5b173cd4e9f325f371d26204dfe156d911c20..589629e80967dc1f318561fbe6a4174e1da231a6:/src/components/search-input/search-input.tsx diff --git a/src/components/search-input/search-input.tsx b/src/components/search-input/search-input.tsx index dc02cd3d13..64ffc39692 100644 --- a/src/components/search-input/search-input.tsx +++ b/src/components/search-input/search-input.tsx @@ -3,7 +3,7 @@ // SPDX-License-Identifier: AGPL-3.0 import * as React from 'react'; -import { IconButton, StyleRulesCallback, withStyles, WithStyles, FormControl, InputLabel, Input, InputAdornment } from '@material-ui/core'; +import { IconButton, StyleRulesCallback, withStyles, WithStyles, FormControl, InputLabel, Input, InputAdornment, Tooltip } from '@material-ui/core'; import SearchIcon from '@material-ui/icons/Search'; type CssRules = 'container' | 'input' | 'button'; @@ -58,7 +58,6 @@ export const SearchInput = withStyles(styles)( timeout: number; render() { - const { classes } = this.props; return
Search @@ -68,12 +67,14 @@ export const SearchInput = withStyles(styles)( onChange={this.handleChange} endAdornment={ - - - + + + + + - }/> + } />
; }