From 2ca6f2aedd172118dad9ba58b89068c8ffc0e155 Mon Sep 17 00:00:00 2001 From: Johannes Millan Date: Sat, 28 Jan 2017 01:01:30 +0100 Subject: [PATCH] fix lint --- app/scripts/main/global-services/jira-s.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/app/scripts/main/global-services/jira-s.js b/app/scripts/main/global-services/jira-s.js index 560037f91b..79d3c895c0 100644 --- a/app/scripts/main/global-services/jira-s.js +++ b/app/scripts/main/global-services/jira-s.js @@ -47,10 +47,7 @@ if (!res || res.error) { console.log('FRONTEND_REQUEST', this.requestsLog[res.requestId]); console.log('RESPONSE', res); - SimpleToast('Jira Request failed: ' - + this.requestsLog[res.requestId].clientRequest.apiMethod - + ' – ' - + (res && res.error)); + SimpleToast('Jira Request failed: ' + this.requestsLog[res.requestId].clientRequest.apiMethod + ' – ' + (res && res.error)); this.requestsLog[res.requestId].defer.reject(res); } else { this.requestsLog[res.requestId].defer.resolve(res);