mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-02 15:06:51 +00:00
feat: better keyboard navigations and shortcut support
This commit is contained in:
@@ -114,6 +114,7 @@ export function useGridViewData(
|
||||
const { list } = await $api.dbTableRow.list(NOCO, base?.value.id as string, meta.value?.id as string, {
|
||||
pks: removedRowsData.map((row) => row[compositePrimaryKey]).join(','),
|
||||
getHiddenColumns: true,
|
||||
limit: removedRowsData.length,
|
||||
})
|
||||
|
||||
removedRowsData = removedRowsData.map((row) => {
|
||||
@@ -650,6 +651,7 @@ export function useGridViewData(
|
||||
const { list } = await $api.dbTableRow.list(NOCO, base?.value.id as string, meta.value?.id as string, {
|
||||
pks: rowsToDelete.map((row) => row[compositePrimaryKey]).join(','),
|
||||
getHiddenColumns: 'true',
|
||||
limit: rowsToDelete.length,
|
||||
})
|
||||
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user