- Fix typos.

- Fix Outgoing Webhook message about created new swimlane.

Related #1969
This commit is contained in:
Lauri Ojansivu 2019-03-25 16:59:12 +02:00
parent 0039fe09be
commit 08c8ebc100
52 changed files with 176 additions and 26 deletions

View file

@ -18,7 +18,7 @@ Meteor.methods({
// label activity did not work yet, see wekan/models/activities.js
const quoteParams = _.clone(params);
['card', 'list', 'oldList', 'board', 'oldBoard', 'comment', 'checklist', 'swimlane', 'oldSwimlane'].forEach((key) => {
['card', 'list', 'oldList', 'board', 'oldBoard', 'comment', 'checklist', 'swimlane', 'oldSwimlane', 'label'].forEach((key) => {
if (quoteParams[key]) quoteParams[key] = `"${params[key]}"`;
});