Browse Source

Merge pull request #7260 from nocodb/fix/fill-group-by

fix: clear fill handle properly on expanded form close
pull/7266/head
Mert E 9 months ago committed by GitHub
parent
commit
14a1bd733d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      packages/nc-gui/components/smartsheet/grid/Table.vue

10
packages/nc-gui/components/smartsheet/grid/Table.vue

@ -1027,13 +1027,11 @@ eventBus.on(async (event, payload) => {
addColumnDropdown.value = true
}
if (event === SmartsheetStoreEvents.CLEAR_NEW_ROW) {
const removed = removeRowIfNew?.(payload)
clearSelectedRange()
activeCell.row = null
activeCell.col = null
if (removed) {
clearSelectedRange()
activeCell.row = null
activeCell.col = null
}
removeRowIfNew?.(payload)
}
})

Loading…
Cancel
Save