Commit ef6c4963 authored by yann300's avatar yann300

fix saving compiler parameters

parent 200b4939
...@@ -53,7 +53,7 @@ export class CompilerClientApi extends CompilerApiMixin(PluginClient) implements ...@@ -53,7 +53,7 @@ export class CompilerClientApi extends CompilerApiMixin(PluginClient) implements
} }
setCompilerParameters (params) { setCompilerParameters (params) {
for (const key in Object.keys(params)) { for (const key of Object.keys(params)) {
localStorage.setItem(key, params[key]) localStorage.setItem(key, params[key])
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment