1
0
Fork 0
mirror of synced 2024-09-30 17:18:14 +13:00

Fix grid keybind for submitting new rows not working

This commit is contained in:
Andrew Kingston 2023-06-28 09:26:45 +01:00
parent c7122448e1
commit ce004d39d1

View file

@ -78,6 +78,11 @@
}
const startAdding = async () => {
// Attempt to submit if already adding a row
if (visible && !isAdding) {
await addRow()
return
}
if (visible || !firstColumn) {
return
}