From 3af9b6923fea5e699f9148406d5e06e8ae7339f1 Mon Sep 17 00:00:00 2001 From: JoshuaVulcan <38018017+JoshuaVulcan@users.noreply.github.com> Date: Mon, 24 Jun 2024 08:26:44 -0700 Subject: [PATCH] support for audio+video filetypes --- src/AddAttachmentButton/index.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/AddAttachmentButton/index.js b/src/AddAttachmentButton/index.js index a7c54aaf0..46af2fe59 100644 --- a/src/AddAttachmentButton/index.js +++ b/src/AddAttachmentButton/index.js @@ -20,6 +20,20 @@ const ATTACHMENT_FILE_TYPES_ACCEPTED = [ '.pdf', '.xlsx', '.xml', + '.mp3', + '.wav', + '.aif', + '.flac', + '.ogg', + '.ogv', + '.pcm', + '.aac', + '.mp4', + '.avi', + '.mov', + '.webm', + '.mkv', + '.wmv' ]; const AddAttachmentButton = ({ className, onAddAttachments }) => {