Fix lint errors.

This commit is contained in:
Lauri Ojansivu 2021-01-06 16:49:20 +02:00
parent f7e85ac86c
commit c7f260d030

View file

@ -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;
});