From 744cc51140c8a846e71d842e3aa2292709db372d Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Wed, 9 Jul 2025 11:43:22 +0200 Subject: [PATCH] Fix find/replace error --- dashboard/src/components/app/Info.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;