2
0
Эх сурвалжийг харах

- Fix lint errors.

Thanks to xet7 !
Lauri Ojansivu 6 жил өмнө
parent
commit
de146f9aaf

+ 5 - 5
server/migrations.js

@@ -344,9 +344,9 @@ Migrations.add('remove-tag', () => {
 });
 });
 
 
 Migrations.add('remove-customFields-references-broken', () => {
 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);
 });
 });