Browse Source

Merge pull request #5562 from open-webui/dev

fix: chat download as plain text issue
Timothy Jaeryang Baek 9 months ago
parent
commit
578d52b89d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/components/layout/Navbar/Menu.svelte

+ 1 - 1
src/lib/components/layout/Navbar/Menu.svelte

@@ -46,7 +46,7 @@
 			type: 'text/plain'
 		});
 
-		saveAs(blob, `chat-${_chat.title}.txt`);
+		saveAs(blob, `chat-${chat.chat.title}.txt`);
 	};
 
 	const downloadPdf = async () => {