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

Fix tab key when editing cell

This commit is contained in:
Bram Wiepjes 2023-09-14 20:23:43 +00:00
parent cc4a302a07
commit a2479fd26d
4 changed files with 10 additions and 6 deletions
web-frontend/modules/database/components/view/grid/fields

View file

@ -180,6 +180,9 @@ export default {
* While the modal is open, all key combinations related to the field must be
* ignored.
*/
canSelectNext() {
return !this.modalOpen
},
canKeyDown() {
return !this.modalOpen
},