You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The root cause of the reported issue is in the ui5-list component. On keydown, when the key is SPACE: _onkeydown(event) {
if (isSpace(event)) {
event.preventDefault(); // prevent scroll
}
and that causes the issue.
We have had similar issue in the ui5-table. Here is a reference where you can check the solution used: #3393
Bug Description
When rendering an
Input
inside aList
header
slot, it's not possible to type in the SPACE key.Expected Behavior
It should be possible to use SPACE to add an whitespace within an input field inside a list header.
Steps to Reproduce
keydown
eventIsolated Example
https://codesandbox.io/s/ui5-webcomponents-forked-xxtib?file=/src/index.js
Context
This issue is similar to #3517 and #3390
The text was updated successfully, but these errors were encountered: