From 3c212252bb899904b07dcb8746fae5add5e280dd Mon Sep 17 00:00:00 2001 From: Marcelo Junior Date: Sun, 25 Aug 2019 00:52:30 +0200 Subject: [PATCH] Removing lint without affecting the feature --- src/compiler/compile/nodes/Element.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/compiler/compile/nodes/Element.ts b/src/compiler/compile/nodes/Element.ts index a8bc6e539a..a7571f75d1 100644 --- a/src/compiler/compile/nodes/Element.ts +++ b/src/compiler/compile/nodes/Element.ts @@ -181,12 +181,12 @@ export default class Element extends Node { break; case 'Transition': - { - const transition = new Transition(component, this, scope, node); - if (node.intro) this.intro = transition; - if (node.outro) this.outro = transition; - break; - } + { + const transition = new Transition(component, this, scope, node); + if (node.intro) this.intro = transition; + if (node.outro) this.outro = transition; + break; + } case 'Animation': this.animation = new Animation(component, this, scope, node);