eslint rules error corrected

This commit is contained in:
Carlos Jimenez 2018-01-11 11:41:14 +01:00
parent 959e5b4543
commit 8664b6cc7d
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ module.exports = function(app) {
for (let validation of validations[fieldName]) {
let options = validation.options;
if ((options && options.async) ||
if ((options && options.async) ||
(validation.validation == 'custom' && !validation.isExportable))
continue;