Kristian Kann

Results 2 comments of Kristian Kann

Sound like a workaround. I can't see any purpose for parsing nested brackets here, so IMO it's a bug.

I've developed dirty fix for that problem: _onKeyDown = event => { if (!event.defaultPrevented && event.key === 'Enter') { this._preventNextSelection(event) } } _preventNextSelection = event => { const nativeSelect =...