Skip to content

Commit e14986a

Browse files
committed
Fix encoding?
1 parent f40c30c commit e14986a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/views/unlayer.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ function loadTemplate() {
108108
const component = this;
109109
unlayer.addEventListener('design:updated', () => {
110110
unlayer.exportHtml(function(data) {
111-
component.html = data.html;
111+
component.html = data.html.replaceAll('[[[', '[[[');
112112
component.json = JSON.parse(JSON.stringify(data.design).replaceAll('[[[', '[[['));
113113
document.getElementById('editor').dirty = true;
114114
});

0 commit comments

Comments
 (0)