i'm using react-select ^1.2.1 and i'm facing a weird behaviour. When i toggle the dropdown in mobile view keyboard is opening like the screenshot
My component inside is this:
render() {
return (
<div className="quantity">
<input
id={this.props.id}
type="number"
name={this.props.input.name}
value={this.props.currentTravelersNumber}
className="person-selector"
/>
<div
role="presentation"
className="quantity-button quantity-up"
>
+
</div>
<div
role="presentation"
className="quantity-button quantity-down"
>
-
</div>
</div>
Any suggestions? Maybe the input tag??