diff --git a/dashboard/src/components/app/Info.vue b/dashboard/src/components/app/Info.vue index 15ac5b610..53e8b5208 100644 --- a/dashboard/src/components/app/Info.vue +++ b/dashboard/src/components/app/Info.vue @@ -21,7 +21,7 @@ const noteContent = ref(''); const profile = inject('profile'); async function onAckChecklistItem(item, key) { - const [error] = await appsModel.ackChecklistItem(props.app.id.value, key, true); + const [error] = await appsModel.ackChecklistItem(props.app.id, key, true); if (error) return console.error(error); item.acknowledged = true;