Skip to content

Commit 0e8c81e

Browse files
committed
Use multiple line comments instead of block comments
Because Linter demands that. Signed-off-by: André Jaenisch <andre.jaenisch@posteo.de>
1 parent 62afdcf commit 0e8c81e

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

web_src/js/components/VueComponentLoader.js

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,10 @@ export function initVueEnv() {
88
if (vueEnvInited) return;
99
vueEnvInited = true;
1010

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

1817
let vueSvgInited = false;

0 commit comments

Comments
 (0)