Fix typing
parent
1ace9495ff
commit
61c67c98f3
|
@ -34,6 +34,8 @@ interface State {
|
||||||
}
|
}
|
||||||
|
|
||||||
export default class TagListItem extends PureComponent<Props, State> {
|
export default class TagListItem extends PureComponent<Props, State> {
|
||||||
|
private debouncedOnSearch: () => void
|
||||||
|
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
super(props)
|
super(props)
|
||||||
|
|
||||||
|
@ -133,8 +135,6 @@ export default class TagListItem extends PureComponent<Props, State> {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
private debouncedOnSearch() {} // See constructor
|
|
||||||
|
|
||||||
private handleInputClick = (e: MouseEvent<HTMLDivElement>): void => {
|
private handleInputClick = (e: MouseEvent<HTMLDivElement>): void => {
|
||||||
e.stopPropagation()
|
e.stopPropagation()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue