Skip to content

Commit 2a0906f

Browse files
Rename text file to something more generic (#2435)
The export message function is generic and is also applied in the message view. Therefore, failedMessage.txt is not exactly an appropriate name for the text file
1 parent e97b6cd commit 2a0906f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Frontend/src/components/messages/ExportMessageButton.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ async function exportMessage() {
1313
await showToastAfterOperation(
1414
async () => {
1515
const exportedString = await store.exportMessage();
16-
useDownloadFileFromString(exportedString, "text/txt", "failedMessage.txt");
16+
useDownloadFileFromString(exportedString, "text/txt", "message.txt");
1717
},
1818
TYPE.INFO,
1919
"Info",

0 commit comments

Comments
 (0)