Merge pull request #5055 from Pandetthe/master

Fix edit_swimlane
This commit is contained in:
Lauri Ojansivu 2023-08-03 13:46:27 +03:00 committed by GitHub
commit fd003f4402
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -510,7 +510,7 @@ if (Meteor.isServer) {
if (!swimlane) {
throw new Meteor.Error('not-found', 'Swimlane not found');
}
Swimlanes.update(
Swimlanes.direct.update(
{ _id: paramSwimlaneId },
{ $set: { title: req.body.title } }
);