Explorar el Código

Fix lint errors.

Lauri Ojansivu hace 4 años
padre
commit
c7f260d030
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      models/cards.js

+ 1 - 1
models/cards.js

@@ -650,7 +650,7 @@ Cards.helpers({
 
     // match right definition to each field
     if (!this.customFields) return [];
-    let ret = this.customFields.map(customField => {
+    const ret = this.customFields.map(customField => {
       const definition = definitions.find(definition => {
         return definition._id === customField._id;
       });