1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-05-02 16:10:02 +00:00

Merge branch 'fix-return-multiselect' into 'develop'

Fix console log error when starting selection in grid view

See merge request 
This commit is contained in:
Petr Stribny 2023-08-15 09:20:14 +00:00
commit c23d91254a
2 changed files with 9 additions and 1 deletions
web-frontend/modules/database/components/view/grid

View file

@ -1093,6 +1093,10 @@ export default {
}
)
if (position === null) {
return
}
let scrollDirection = 'both'
if (position === 'head' && key === 'ArrowLeft') {
scrollDirection = 'horizontal'