Explorar el Código

Fixed lint error by using dot notation.

Lauri Ojansivu hace 7 años
padre
commit
7d52a29620
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      server/notifications/outgoing.js

+ 1 - 1
server/notifications/outgoing.js

@@ -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: {