X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/f62ba0aeff590ef1c57669d4f46e43b5ee169522..fc84a3f3932af503d3afd04a58af52270c8fc3b6:/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 02c193c2..50338f40 100644 --- a/src/components/search-input/search-input.tsx +++ b/src/components/search-input/search-input.tsx @@ -2,7 +2,7 @@ // // SPDX-License-Identifier: AGPL-3.0 -import * as React from 'react'; +import React from 'react'; import { IconButton, StyleRulesCallback, withStyles, WithStyles, FormControl, InputLabel, Input, InputAdornment, Tooltip } from '@material-ui/core'; import SearchIcon from '@material-ui/icons/Search'; @@ -35,6 +35,7 @@ const styles: StyleRulesCallback = theme => { interface SearchInputDataProps { value: string; label?: string; + selfClearProp: string; } interface SearchInputActionProps { @@ -47,6 +48,7 @@ type SearchInputProps = SearchInputDataProps & SearchInputActionProps & WithStyl interface SearchInputState { value: string; label: string; + selfClearProp: string; } export const DEFAULT_SEARCH_DEBOUNCE = 1000; @@ -55,7 +57,8 @@ export const SearchInput = withStyles(styles)( class extends React.Component { state: SearchInputState = { value: "", - label: "" + label: "", + selfClearProp: "" }; timeout: number; @@ -66,6 +69,7 @@ export const SearchInput = withStyles(styles)( {this.state.label}