Fix find/replace error

This commit is contained in:
Johannes Zellner
2025-07-09 11:43:22 +02:00
parent c73e24c3a2
commit 744cc51140

View File

@@ -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;