Skip to content

Commit

Permalink
Use multiple line comments instead of block comments
Browse files Browse the repository at this point in the history
Because Linter demands that.

Signed-off-by: André Jaenisch <[email protected]>
  • Loading branch information
Ryuno-Ki committed Jun 20, 2022
1 parent 62afdcf commit 0e8c81e
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions web_src/js/components/VueComponentLoader.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,10 @@ export function initVueEnv() {
if (vueEnvInited) return;
vueEnvInited = true;

/* As far as I could tell, this is no longer possible.
* But there seem not to be a guide what to do instead.
const isProd = window.config.runModeIsProd;
Vue.config.devtools = !isProd;
*/
// As far as I could tell, this is no longer possible.
// But there seem not to be a guide what to do instead.
// const isProd = window.config.runModeIsProd;
// Vue.config.devtools = !isProd;
}

let vueSvgInited = false;
Expand Down

0 comments on commit 0e8c81e

Please sign in to comment.