From 8076170cabb493fa9ce5791fa4e5323628a2a1e8 Mon Sep 17 00:00:00 2001 From: David A Kondrad Date: Tue, 10 Dec 2019 15:51:35 -0500 Subject: [PATCH] cosmetic: fix ws --- src/compiler/compile/Component.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/compiler/compile/Component.ts b/src/compiler/compile/Component.ts index aee214602d..2c7fb64b67 100644 --- a/src/compiler/compile/Component.ts +++ b/src/compiler/compile/Component.ts @@ -203,8 +203,7 @@ export default class Component { const subscribable_name = name.slice(1); const variable = this.var_lookup.get(subscribable_name); - if (variable) - { + if (variable) { variable.referenced = true; variable.subscribable = true; }