diff --git a/src/pages/Claim/Card/ClaimNotes.vue b/src/pages/Claim/Card/ClaimNotes.vue index 63c5a5f0a1..b93265137d 100644 --- a/src/pages/Claim/Card/ClaimNotes.vue +++ b/src/pages/Claim/Card/ClaimNotes.vue @@ -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, };