소스 검색

Fix edit_swimlane

Jakub Jurczyk 2 년 전
부모
커밋
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 } }
       );