feat: refs #8077 sumDefaulter #1239

Merged
robert merged 9 commits from 8077-sumDefaulterFrontFix into dev 2025-01-24 10:55:38 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 13290aa44b - Show all commits

View File

@ -114,7 +114,7 @@ onBeforeRouteLeave((to, from, next) => {
}); });
async function fetch(data) { async function fetch(data) {
const rows = data[$attrs['key-data']] ?? data; const rows = $attrs['key-data'] ? data[$attrs['key-data']] : data;
resetData(rows); resetData(rows);
emit('onFetch', rows); emit('onFetch', rows);
return rows; return rows;