Fixing linting errors

This commit is contained in:
Jonathan Kingston
2017-05-25 17:12:53 +01:00
parent a29fae0893
commit fb845cce12
3 changed files with 8 additions and 7 deletions
+1 -1
View File
@@ -135,7 +135,7 @@ const Logic = {
async currentTab() {
const activeTabs = await browser.tabs.query({active: true});
if (activeTabs.length > 0) {
return activeTabs[0]
return activeTabs[0];
}
return false;
},