From 3a22d4efdcca35ecf87feb4270108f0fb97d6226 Mon Sep 17 00:00:00 2001 From: Jakub Jurczyk Date: Thu, 3 Aug 2023 12:44:22 +0200 Subject: [PATCH] Fix edit_swimlane --- models/swimlanes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/swimlanes.js b/models/swimlanes.js index 0b6f1a210..d9850b6a7 100644 --- a/models/swimlanes.js +++ b/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 } } );