fix(lint): missing semicolon

This commit is contained in:
Matteo Pagliazzi 2016-04-10 19:18:46 +02:00
parent 8ea05c3c46
commit ad3c8f0ad2

View file

@ -129,7 +129,7 @@ TaskSchema.statics.fromJSONV2 = function toJSONV2 (taskObj) {
let v2Tags = taskObj.tags || {};
taskObj.tags = [];
taskObj.tags = _.map(v2Tags, (tag, key) => key)
taskObj.tags = _.map(v2Tags, (tag, key) => key);
return taskObj;
};