Added yaml as a file upload option (#4872)

This commit is contained in:
Karl Stoney 2025-07-18 14:59:30 +01:00 committed by GitHub
parent d584c0b700
commit cc4a773010
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -27,6 +27,7 @@ const availableFileTypes = [
{ name: 'CSV', ext: 'text/csv' }, { name: 'CSV', ext: 'text/csv' },
{ name: 'HTML', ext: 'text/html' }, { name: 'HTML', ext: 'text/html' },
{ name: 'JSON', ext: 'application/json' }, { name: 'JSON', ext: 'application/json' },
{ name: 'YAML', ext: 'application/x-yaml' },
{ name: 'Markdown', ext: 'text/markdown' }, { name: 'Markdown', ext: 'text/markdown' },
{ name: 'PDF', ext: 'application/pdf' }, { name: 'PDF', ext: 'application/pdf' },
{ name: 'SQL', ext: 'application/sql' }, { name: 'SQL', ext: 'application/sql' },