UI - Block "ignoring" using space

While I removed (using custom index.html and a css class hiding the footer) the buttons allowing ignore. It’s still possible to ignore things using “space” key. Is it possible to block this?

Thanks!

There’s no setting for this at the moment, but you could intercept the keydown event and stop it from propagating if it’s the space bar. For example:

document.querySelector('#root').addEventListener('keydown', function(event) {
    if (event.keyCode === 32) {  // key code for "space"
        event.stopPropagation()
    }
})

This stops the key event from propagating to the parent containers – i.e. the document.body, which the other keydown listeners are attached to.

Thanks! working for now!
Really seems like something the ought to configurable