From 1f056381a31f1bcfd7d2558b75d6194a2fe1f1e4 Mon Sep 17 00:00:00 2001 From: Mathieu Virbel Date: Thu, 12 Oct 2023 11:46:02 +0200 Subject: [PATCH] www: remove webm download button on the recording meeting page --- www/app/transcripts/recorder.tsx | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/www/app/transcripts/recorder.tsx b/www/app/transcripts/recorder.tsx index ed86a73f..a550a840 100644 --- a/www/app/transcripts/recorder.tsx +++ b/www/app/transcripts/recorder.tsx @@ -208,12 +208,6 @@ export default function Recorder(props: RecorderProps) { if (!record) return; return record.on("stopRecording", () => { - const link = document.getElementById("download-recording"); - if (!link) return; - - link.setAttribute("href", record.getRecordedUrl()); - link.setAttribute("download", "reflector-recording.webm"); - link.style.visibility = "visible"; renderMarkers(); }); }, [record]); @@ -322,16 +316,6 @@ export default function Recorder(props: RecorderProps) { )} - - {!props.transcriptId && ( - - - - )} )} {!hasRecorded && (