From 61a5e4b44e840ba3370b2b09941874a42769a57e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wolfgang=20Hu=C3=9F?= Date: Wed, 27 Mar 2024 09:09:35 +0100 Subject: [PATCH] Refactor icon import to add 'fill' and 'stroke' in icons --- frontend/src/assets/icons/helpers/convertSvgToVue.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/assets/icons/helpers/convertSvgToVue.js b/frontend/src/assets/icons/helpers/convertSvgToVue.js index 1fa11ba5c..81776eac7 100644 --- a/frontend/src/assets/icons/helpers/convertSvgToVue.js +++ b/frontend/src/assets/icons/helpers/convertSvgToVue.js @@ -16,7 +16,7 @@ readdirSync(inputDir).forEach((file) => { const fileName = parse(file).name // eslint-disable-next-line security/detect-non-literal-fs-filename const content = readFileSync(filePath, 'utf8') - const vueComponent = `\n\n\n` + const vueComponent = `\n\n\n` const outputFilePath = join(outputDir, `${fileName}.vue`) // eslint-disable-next-line security/detect-non-literal-fs-filename