فهرست منبع

Merge pull request #5055 from Pandetthe/master

Fix edit_swimlane
Lauri Ojansivu 1 سال پیش
والد
کامیت
fd003f4402
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      models/swimlanes.js

+ 1 - 1
models/swimlanes.js

@@ -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 } }
       );