6336-refactor-claimSummary #227

Merged
jsegarra merged 5 commits from 6336-refactor-claimSummary into dev 2024-03-06 10:44:31 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 5f77115716 - Show all commits

View File

@ -15,7 +15,7 @@ const $props = defineProps({
const claimId = computed(() => $props.id || route.params.id);
const claimFilter = {
where: { claimFk: claimId },
where: { claimFk: claimId.value },
fields: ['created', 'workerFk', 'text'],
include: {
relation: 'worker',
@ -32,7 +32,7 @@ const claimFilter = {
};
const body = {
claimFk: claimId,
claimFk: claimId.value,
workerFk: user.value.id,
};
</script>