mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-03 08:21:07 +00:00
fix(lint): missing semicolon
This commit is contained in:
parent
8ea05c3c46
commit
ad3c8f0ad2
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue