mirror of
https://github.com/open-webui/open-webui
synced 2024-12-28 14:52:23 +00:00
feat: Add support for Google Slides with text/plain export
This commit is contained in:
parent
9fc4ef323c
commit
f4b9f77cc9
@ -109,7 +109,7 @@ export const createPicker = () => {
|
||||
.setIncludeFolders(false)
|
||||
.setSelectFolderEnabled(false)
|
||||
.setMimeTypes(
|
||||
'application/pdf,text/plain,application/vnd.openxmlformats-officedocument.wordprocessingml.document,application/vnd.google-apps.document,application/vnd.google-apps.spreadsheet'
|
||||
'application/pdf,text/plain,application/vnd.openxmlformats-officedocument.wordprocessingml.document,application/vnd.google-apps.document,application/vnd.google-apps.spreadsheet,application/vnd.google-apps.presentation'
|
||||
)
|
||||
)
|
||||
.setOAuthToken(token)
|
||||
@ -141,6 +141,7 @@ export const createPicker = () => {
|
||||
} else if (mimeType.includes('spreadsheet')) {
|
||||
exportFormat = 'text/csv';
|
||||
} else if (mimeType.includes('presentation')) {
|
||||
exportFormat = 'text/plain';
|
||||
exportFormat =
|
||||
'application/vnd.openxmlformats-officedocument.presentationml.presentation';
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user