From 27225a9d9c2dca492601d2c7f17b7bbba47127d1 Mon Sep 17 00:00:00 2001 From: Chris Lawton <chris.lawton@torchbox.com> Date: Tue, 20 Mar 2018 15:44:35 +0000 Subject: [PATCH] lint - remove extra semicolon --- opentech/static_src/src/javascript/components/tabs.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/opentech/static_src/src/javascript/components/tabs.js b/opentech/static_src/src/javascript/components/tabs.js index 6f4581235..4c31213f2 100644 --- a/opentech/static_src/src/javascript/components/tabs.js +++ b/opentech/static_src/src/javascript/components/tabs.js @@ -57,8 +57,8 @@ class Tabs { } addTabClasses(tab){ - if( tab === null) { - tab = document.querySelector(`[data-tab=${this.defaultSelectedTab}]`);; + if(tab === null) { + tab = document.querySelector(`[data-tab=${this.defaultSelectedTab}]`); } const tabId = tab.getAttribute('data-tab'); -- GitLab