0
0
Fork 0

Merge pull request 'fix: refs #7909 add originFk' (!691) from 7909-hotfix-rollbackScroll into master

Reviewed-on: verdnatura/salix-front#691
Reviewed-by: Javi Gallego <jgallego@verdnatura.es>
This commit is contained in:
Jorge Penadés 2024-09-09 11:44:40 +00:00
commit 7fe5923ee2
1 changed files with 1 additions and 1 deletions

View File

@ -67,6 +67,7 @@ const filter = {
}, },
}, },
], ],
where: { and: [{ originFk: route.params.id }] },
}; };
const paginate = ref(); const paginate = ref();
@ -237,7 +238,6 @@ async function openPointRecord(id, modelLog) {
pointRecord.value = parseProps(propNames, locale, data); pointRecord.value = parseProps(propNames, locale, data);
} }
async function setLogTree(data) { async function setLogTree(data) {
filter.where = { and: [{ originFk: route.params.id }] };
logTree.value = getLogTree(data); logTree.value = getLogTree(data);
} }