mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-13 12:55:19 +00:00
fix: Change Google Docs export format from markdown to plain text
This commit is contained in:
parent
b46f4ff3e0
commit
4215c8ac3f
1 changed files with 1 additions and 1 deletions
|
|
@ -136,7 +136,7 @@ export const createPicker = () => {
|
||||||
if (mimeType.includes('google-apps')) {
|
if (mimeType.includes('google-apps')) {
|
||||||
// Handle Google Workspace files
|
// Handle Google Workspace files
|
||||||
if (mimeType.includes('document')) {
|
if (mimeType.includes('document')) {
|
||||||
exportFormat = 'text/markdown';
|
exportFormat = 'text/plain';
|
||||||
} else if (mimeType.includes('spreadsheet')) {
|
} else if (mimeType.includes('spreadsheet')) {
|
||||||
exportFormat = 'text/csv';
|
exportFormat = 'text/csv';
|
||||||
} else if (mimeType.includes('presentation')) {
|
} else if (mimeType.includes('presentation')) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue