mirror of
https://github.com/wekan/wekan.git
synced 2025-12-17 07:50:12 +01:00
Fixed lint error by using dot notation.
This commit is contained in:
parent
93f08eb9c7
commit
7d52a29620
1 changed files with 1 additions and 1 deletions
|
|
@ -31,7 +31,7 @@ Meteor.methods({
|
||||||
['cardId', 'listId', 'oldListId', 'boardId'].forEach((key) => {
|
['cardId', 'listId', 'oldListId', 'boardId'].forEach((key) => {
|
||||||
if (params[key]) value[key] = params[key];
|
if (params[key]) value[key] = params[key];
|
||||||
});
|
});
|
||||||
value['description'] = description;
|
value.$description = description;
|
||||||
|
|
||||||
const options = {
|
const options = {
|
||||||
headers: {
|
headers: {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue