Fix bugs with customFields identified in Issue #3574

Fixed bug with the reference to the customFieldValue in the cards.js

Activity Insert was not being passed the listId, swimlaneId which was required when building the webhook text string.

Added customField and customFieldValue as default values for the webhook msgs. There is no good reason to exclude these (they will only be included when changing a customField anyway). Updated the docker-compose comment to reflect this change.
This commit is contained in:
n8ores 2021-02-18 22:52:18 +13:00
parent 49df8f4b43
commit 950e41e8f7
4 changed files with 6 additions and 4 deletions

View file

@ -61,6 +61,8 @@ if (Meteor.isServer) {
'card',
'commentId',
'swimlaneId',
'customField',
'customFieldValue'
];
const responseFunc = data => {
const paramCommentId = data.commentId;