From 3566b889be0cd9bdb9430bb82a91762bfd0a9cfc Mon Sep 17 00:00:00 2001 From: kolaente Date: Wed, 17 Jul 2024 13:45:31 +0200 Subject: [PATCH] fix(task): use backdropView prop --- frontend/src/views/tasks/TaskDetailView.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/views/tasks/TaskDetailView.vue b/frontend/src/views/tasks/TaskDetailView.vue index 9bcc20265..023d33756 100644 --- a/frontend/src/views/tasks/TaskDetailView.vue +++ b/frontend/src/views/tasks/TaskDetailView.vue @@ -705,7 +705,7 @@ const color = computed(() => { const hasAttachments = computed(() => attachmentStore.attachments.length > 0) -const isModal = computed(() => Boolean(backdropView)) +const isModal = computed(() => Boolean(props.backdropView)) function attachmentUpload(file: File, onSuccess?: (url: string) => void) { return uploadFile(props.taskId, file, onSuccess)