From e42c118b3d13443c5c201e9415ce5fcd18c05ad3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Thu, 5 Oct 2017 19:06:46 +0200 Subject: [PATCH] fix: missing semicolon --- public/app/core/components/jsontree/jsontree.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/core/components/jsontree/jsontree.ts b/public/app/core/components/jsontree/jsontree.ts index d9972f907ac..52fb64e1c87 100644 --- a/public/app/core/components/jsontree/jsontree.ts +++ b/public/app/core/components/jsontree/jsontree.ts @@ -13,7 +13,7 @@ coreModule.directive('jsonTree', [function jsonTreeDirective() { var jsonExp = new JsonExplorer(scope.object, 3, { animateOpen: true - }) + }); const html = jsonExp.render(true); elem.html(html);