Fix typing
parent
1ace9495ff
commit
61c67c98f3
|
@ -34,6 +34,8 @@ interface State {
|
|||
}
|
||||
|
||||
export default class TagListItem extends PureComponent<Props, State> {
|
||||
private debouncedOnSearch: () => void
|
||||
|
||||
constructor(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 => {
|
||||
e.stopPropagation()
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue