Commit ebc8614e authored by yann300's avatar yann300

linting

parent 8cf40f97
...@@ -139,10 +139,9 @@ class CompileTab extends CompilerApiMixin(ViewPlugin) { // implements ICompilerA ...@@ -139,10 +139,9 @@ class CompileTab extends CompilerApiMixin(ViewPlugin) { // implements ICompilerA
} }
getAppParameter (name) { getAppParameter (name) {
let param
// first look in the URL params then in the local storage // first look in the URL params then in the local storage
const params = this.queryParams.get() const params = this.queryParams.get()
param = params[name] ? params[name] : this.config.get(name) const param = params[name] ? params[name] : this.config.get(name)
if (param === 'true') return true if (param === 'true') return true
if (param === 'false') return false if (param === 'false') return false
return param return param
......
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