Fixed lint error by using dot notation.

This commit is contained in:
Lauri Ojansivu 2017-08-23 23:43:12 +03:00
parent 93f08eb9c7
commit 7d52a29620

View file

@ -31,7 +31,7 @@ Meteor.methods({
['cardId', 'listId', 'oldListId', 'boardId'].forEach((key) => {
if (params[key]) value[key] = params[key];
});
value['description'] = description;
value.$description = description;
const options = {
headers: {