This commit is contained in:
Timothy Jaeryang Baek 2025-03-15 17:13:40 +00:00
parent d93828e923
commit 4f5aba8be7
2 changed files with 3 additions and 2 deletions

View File

@ -96,7 +96,7 @@
heightLeft -= pageHeight; heightLeft -= pageHeight;
} }
pdf.save('document.pdf'); pdf.save(`chat-${chat.chat.title}.pdf`);
} catch (error) { } catch (error) {
console.error('Error generating PDF', error); console.error('Error generating PDF', error);
} }

View File

@ -79,6 +79,7 @@
}; };
const downloadPdf = async () => { const downloadPdf = async () => {
const chat = await getChatById(localStorage.token, chatId);
const containerElement = document.getElementById('messages-container'); const containerElement = document.getElementById('messages-container');
if (containerElement) { if (containerElement) {
@ -113,7 +114,7 @@
heightLeft -= pageHeight; heightLeft -= pageHeight;
} }
pdf.save('document.pdf'); pdf.save(`chat-${chat.chat.title}.pdf`);
} catch (error) { } catch (error) {
console.error('Error generating PDF', error); console.error('Error generating PDF', error);
} }