From b0b755d6bdbeedf33339f98e3033f0638f2490bd Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Thu, 26 Mar 2026 20:28:09 +0100 Subject: [PATCH] fix(webapp): fix svgs in chat (#9440) --- webapp/components/Chat/Chat.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/webapp/components/Chat/Chat.vue b/webapp/components/Chat/Chat.vue index 09fd314ad..b1dd9b8b3 100644 --- a/webapp/components/Chat/Chat.vue +++ b/webapp/components/Chat/Chat.vue @@ -412,6 +412,7 @@ export default { [file.blob], // Captured audio already has the right extension in the name file.extension ? `${file.name}.${file.extension}` : file.name, + { type: file.type }, ), name: file.name, type: file.type,