瀏覽代碼

Fix edit_swimlane

Jakub Jurczyk 1 年之前
父節點
當前提交
3a22d4efdc
共有 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 } }
       );