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
1 changed files with 5 additions and 0 deletions

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
}