From 908a5fc60d5d574a36d4bfd496d3a16fd267ae75 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Sat, 8 Mar 2025 19:50:00 +0200 Subject: [PATCH] Comment out error message of non-existing Custom Field. Thanks to xet7 ! Related #5684 --- models/cards.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/cards.js b/models/cards.js index 5e2f47a2e..fedef962f 100644 --- a/models/cards.js +++ b/models/cards.js @@ -535,7 +535,7 @@ Cards.helpers({ // Check if oldCf is undefined or null if (!oldCf) { - console.error(`Custom field with ID ${cf._id} not found.`); + //console.error(`Custom field with ID ${cf._id} not found.`); return cf; // Skip this field if oldCf is not found }