瀏覽代碼

Comment out error message of non-existing Custom Field.

Thanks to xet7 !

Related #5684
Lauri Ojansivu 2 月之前
父節點
當前提交
908a5fc60d
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      models/cards.js

+ 1 - 1
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
         }