Skip to content

Commit 689ca01

Browse files
authored
fix: preview of mail not working on firefox
1 parent ced769e commit 689ca01

File tree

2 files changed

+2
-2
lines changed
  • src/Resources/app/administration/src/module/frosh-mail-archive/page/frosh-mail-archive-detail

2 files changed

+2
-2
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "frosh/mail-platform-archive",
3-
"version": "3.5.4",
3+
"version": "3.5.5",
44
"description": "Mail Archive",
55
"type": "shopware-platform-plugin",
66
"license": "MIT",

src/Resources/app/administration/src/module/frosh-mail-archive/page/frosh-mail-archive-detail/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ Component.register('frosh-mail-archive-detail', {
128128
binary.forEach(b => result += String.fromCharCode(b));
129129

130130
return (
131-
'data:text/html;base64;charset=utf-8,' + btoa(result)
131+
'data:text/html;charset=utf-8;base64,' + btoa(result)
132132
);
133133
},
134134
openCustomer() {

0 commit comments

Comments
 (0)