feat: better keyboard navigations and shortcut support

This commit is contained in:
DarkPhoenix2704
2025-02-17 13:10:53 +00:00
parent 32a4569bb0
commit cc3a0fddaa
9 changed files with 385 additions and 146 deletions

View File

@@ -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 {