Skip to content

Commit

Permalink
fix: fix bad export
Browse files Browse the repository at this point in the history
  • Loading branch information
delanni committed Dec 15, 2023
1 parent 6f95cb7 commit ca51c3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bundle.min.js
Original file line number Diff line number Diff line change
Expand Up @@ -47354,7 +47354,7 @@

emitter.on('gallery:export', (e) => {
const fixCode = (code) => {
return code.replace(/([^\s])*([^\s])/g, '$1 * $2');
return code.replace(/([^\s])\*([^\s])/g, '$1 * $2');
}

// we have to deduplicate by name b4 saving
Expand Down

0 comments on commit ca51c3e

Please sign in to comment.