Make public space alias field mandatory again

This commit is contained in:
Michael Telatynski 2021-10-08 14:33:58 +01:00
parent e1c1d2dc0f
commit ccba7badff
2 changed files with 7 additions and 8 deletions

View file

@ -143,6 +143,10 @@ export default class Field extends React.PureComponent<PropShapes, IState> {
public focus() {
this.input.focus();
// programmatic does not fire onFocus handler
this.setState({
focused: true,
});
}
private onFocus = (ev) => {