Lint semis
parent
8773d67df7
commit
bb18e677f9
|
@ -76,7 +76,7 @@ export default class RoomSearch extends React.PureComponent<IProps, IState> {
|
||||||
private clearInput = () => {
|
private clearInput = () => {
|
||||||
if (!this.inputRef.current) return;
|
if (!this.inputRef.current) return;
|
||||||
this.inputRef.current.value = "";
|
this.inputRef.current.value = "";
|
||||||
defaultDispatcher.dispatch({action: Action.StopRoomFilter})
|
defaultDispatcher.dispatch({action: Action.StopRoomFilter});
|
||||||
this.onChange();
|
this.onChange();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -104,13 +104,13 @@ export default class RoomSearch extends React.PureComponent<IProps, IState> {
|
||||||
this.setState({focused: true});
|
this.setState({focused: true});
|
||||||
ev.target.select();
|
ev.target.select();
|
||||||
if (ev.target.value === "") {
|
if (ev.target.value === "") {
|
||||||
defaultDispatcher.dispatch({action: Action.StartRoomFilter})
|
defaultDispatcher.dispatch({action: Action.StartRoomFilter});
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
private onBlur = (ev: React.FocusEvent<HTMLInputElement>) => {
|
private onBlur = (ev: React.FocusEvent<HTMLInputElement>) => {
|
||||||
if (ev.target.value === "") {
|
if (ev.target.value === "") {
|
||||||
defaultDispatcher.dispatch({action: Action.StopRoomFilter})
|
defaultDispatcher.dispatch({action: Action.StopRoomFilter});
|
||||||
}
|
}
|
||||||
this.setState({focused: false});
|
this.setState({focused: false});
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue