From 19d7c6945cc5d509a0ccb5d9f004264c558c5918 Mon Sep 17 00:00:00 2001 From: br0kenpixel <23280129+br0kenpixel@users.noreply.github.com> Date: Sat, 29 Nov 2025 16:23:47 +0100 Subject: [PATCH] feat: make block display optional in `InternshipAgreementDownloader` --- frontend/app/components/InternshipAgreementDownloader.vue | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/frontend/app/components/InternshipAgreementDownloader.vue b/frontend/app/components/InternshipAgreementDownloader.vue index ac18af3..29170f0 100644 --- a/frontend/app/components/InternshipAgreementDownloader.vue +++ b/frontend/app/components/InternshipAgreementDownloader.vue @@ -2,7 +2,8 @@ import { FetchError } from 'ofetch'; const props = defineProps<{ - internship_id: number + internship_id: number, + block?: boolean, }>(); const client = useSanctumClient(); @@ -27,8 +28,8 @@ async function requestDownload() {