From 5dcabfdad0af570c530dfe9513f746d331978a9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Lins?= Date: Thu, 30 Apr 2020 08:50:08 -0300 Subject: [PATCH] Fix lint --- src/compiler/compile/nodes/Element.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/compile/nodes/Element.ts b/src/compiler/compile/nodes/Element.ts index 99b132e5a8..b9d2672168 100644 --- a/src/compiler/compile/nodes/Element.ts +++ b/src/compiler/compile/nodes/Element.ts @@ -425,7 +425,7 @@ export default class Element extends Node { validate_special_cases() { const { component,attributes } = this; - let attribute_map = new Map(); + const attribute_map = new Map(); attributes.forEach(attribute => ( attribute_map.set(attribute.name, attribute)