7118_testToMaster_2412 #249

Merged
alexm merged 178 commits from 7118_testToMaster_2412 into master 2024-03-21 06:34:44 +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>