summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2017-08-23 23:43:12 +0300
committerLauri Ojansivu <x@xet7.org>2017-08-23 23:43:12 +0300
commit7d52a2962024fdf9b721d23f532ce50e37e5ba14 (patch)
tree4bd048497663f2f842d19819be873efa9d79421b
parent93f08eb9c788a9ac54145da2c1f1d2bb160a40d8 (diff)
downloadwekan-7d52a2962024fdf9b721d23f532ce50e37e5ba14.tar.gz
wekan-7d52a2962024fdf9b721d23f532ce50e37e5ba14.tar.bz2
wekan-7d52a2962024fdf9b721d23f532ce50e37e5ba14.zip
Fixed lint error by using dot notation.
-rw-r--r--server/notifications/outgoing.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/notifications/outgoing.js b/server/notifications/outgoing.js
index 88e50fa0..c227366e 100644
--- a/server/notifications/outgoing.js
+++ b/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: {