فهرست منبع

- Fix lint errors.

Thanks to xet7 !
Lauri Ojansivu 6 سال پیش
والد
کامیت
de146f9aaf
1فایلهای تغییر یافته به همراه5 افزوده شده و 5 حذف شده
  1. 5 5
      server/migrations.js

+ 5 - 5
server/migrations.js

@@ -344,9 +344,9 @@ Migrations.add('remove-tag', () => {
 });
 
 Migrations.add('remove-customFields-references-broken', () => {
-  Cards.update(
-    {'customFields.$value': null},
-    {$pull: {customFields: {value: null}}},
-    noValidateMulti,
-  );
+  Cards.update({'customFields.$value': null},
+    { $pull: {
+      customFields: {value: null},
+    },
+    }, noValidateMulti);
 });