From bcf602fe7751130ce968848556b30541928b926a Mon Sep 17 00:00:00 2001 From: mattwr18 Date: Tue, 10 Dec 2019 14:08:13 +0100 Subject: [PATCH] Use more verbose naming - Co-authored-by: Alina Beck --- webapp/nuxt.config.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/webapp/nuxt.config.js b/webapp/nuxt.config.js index 3425715d8..83a0a65f1 100644 --- a/webapp/nuxt.config.js +++ b/webapp/nuxt.config.js @@ -281,9 +281,9 @@ export default { ctx.loaders.vue.compilerOptions = { modules: [ { - preTransformNode(astEl) { + preTransformNode(abstractSyntaxTreeElement) { if (!ctx.isDev) { - const { attrsMap, attrsList } = astEl + const { attrsMap, attrsList } = abstractSyntaxTreeElement tagAttributesForTesting.forEach(attribute => { if (attrsMap[attribute]) { delete attrsMap[attribute] @@ -292,7 +292,7 @@ export default { } }) } - return astEl + return abstractSyntaxTreeElement }, }, ],