summaryrefslogtreecommitdiffstats
path: root/client/components
diff options
context:
space:
mode:
Diffstat (limited to 'client/components')
-rw-r--r--client/components/lists/listHeader.js6
1 files changed, 2 insertions, 4 deletions
diff --git a/client/components/lists/listHeader.js b/client/components/lists/listHeader.js
index 7db93618..e34d23fd 100644
--- a/client/components/lists/listHeader.js
+++ b/client/components/lists/listHeader.js
@@ -62,14 +62,12 @@ BlazeComponent.extendComponent({
try {
trelloCard = JSON.parse(jsonData);
} catch (e) {
- console.log(e);
this.setError('error-json-malformed');
return;
}
Meteor.call('importTrelloCard', trelloCard, this.currentData()._id, sortIndex,
(error, response) => {
if (error) {
- console.log(error);
this.setError(error.error);
} else {
Filter.addException(response);
@@ -77,8 +75,8 @@ BlazeComponent.extendComponent({
}
}
);
- }
- },];
+ },
+ }];
},
onCreated() {