From 15ca3287272829058580b9af49d4fef606ad9496 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Wed, 11 Mar 2026 19:26:17 +0200 Subject: [PATCH] feat(audio): make player full-width --- apps/client/src/widgets/note_wrapper.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/widgets/note_wrapper.ts b/apps/client/src/widgets/note_wrapper.ts index 80fc42c6d2..b3f923f2a8 100644 --- a/apps/client/src/widgets/note_wrapper.ts +++ b/apps/client/src/widgets/note_wrapper.ts @@ -83,7 +83,7 @@ export default class NoteWrapperWidget extends FlexContainer { return true; } - if (note.type === "file" && (note.mime === "application/pdf" || note.mime.startsWith("video/"))) { + if (note.type === "file" && (note.mime === "application/pdf" || note.mime.startsWith("video/") || note.mime.startsWith("audio/"))) { return true; }