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 baserow/baserow!1587
This commit is contained in:
commit
c23d91254a
2 changed files with 9 additions and 1 deletions
web-frontend/modules/database/components/view/grid
|
@ -1093,6 +1093,10 @@ export default {
|
|||
}
|
||||
)
|
||||
|
||||
if (position === null) {
|
||||
return
|
||||
}
|
||||
|
||||
let scrollDirection = 'both'
|
||||
if (position === 'head' && key === 'ArrowLeft') {
|
||||
scrollDirection = 'horizontal'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue