Browse Source

fix: drop unnecessary await

Signed-off-by: mertmit <mertmit99@gmail.com>
pull/4025/head
mertmit 2 years ago
parent
commit
a4a6bcc92a
  1. 2
      packages/nc-gui/components/smartsheet/Grid.vue

2
packages/nc-gui/components/smartsheet/Grid.vue

@ -293,7 +293,7 @@ async function reloadViewDataHandler(shouldShowLoading: boolean | void) {
}
async function openNewRecordHandler() {
const newRow = await addEmptyRow()
const newRow = addEmptyRow()
expandForm(newRow, undefined, true)
}

Loading…
Cancel
Save