We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ed3119 commit 8fea2dfCopy full SHA for 8fea2df
src/App.vue
@@ -85,7 +85,7 @@ onMounted(() => {
85
const rawCode = window.location.search.match(/\?code=(.+)$/)?.[1];
86
if (rawCode)
87
try {
88
- const code = utf8.decode(base64.decode(rawCode));
+ const code = utf8.decode(base64.decode(decodeURIComponent(rawCode)));
89
const data = (<FunctionPlotDatum[]>JSON5.parse(code).data).map(
90
importMapper
91
);
0 commit comments