diff --git a/core/.eslintrc.passing.json b/core/.eslintrc.passing.json index 9180391254294904081b93115cd8c1fa06c31ccd..05bd17608712c95ba9f7eaf28e5560e55ef6e635 100644 --- a/core/.eslintrc.passing.json +++ b/core/.eslintrc.passing.json @@ -8,7 +8,6 @@ "no-restricted-syntax": "off", "no-new": "off", "no-multi-assign": "off", - "no-empty": "off", "no-continue": "off", "new-cap": "off", "max-len": "off", diff --git a/core/modules/quickedit/js/models/FieldModel.es6.js b/core/modules/quickedit/js/models/FieldModel.es6.js index 776c331f32fd7b75ab5c3ddbb66ce37ffa0a9a76..0c01cc30240678fb10049246bcf2330d35effd5f 100644 --- a/core/modules/quickedit/js/models/FieldModel.es6.js +++ b/core/modules/quickedit/js/models/FieldModel.es6.js @@ -218,15 +218,8 @@ // different view mode). .where({ logicalFieldID: currentField.get('logicalFieldID') }) .forEach((field) => { - // Ignore the current field. - if (field === currentField) { - - } - // Also ignore other fields with the same view mode. - else if (field.get('fieldID') === currentField.get('fieldID')) { - - } - else { + // Ignore the current field and other fields with the same view mode. + if (field !== currentField && field.get('fieldID') !== currentField.get('fieldID')) { otherViewModes.push(field.getViewMode()); } }); diff --git a/core/modules/quickedit/js/models/FieldModel.js b/core/modules/quickedit/js/models/FieldModel.js index f3c6cd582c541b93a5bb43086b2e8980550eaa5b..b44ce5fb475bc71459ee0f6492faec34dcc73fd4 100644 --- a/core/modules/quickedit/js/models/FieldModel.js +++ b/core/modules/quickedit/js/models/FieldModel.js @@ -72,9 +72,9 @@ var currentField = this; var otherViewModes = []; Drupal.quickedit.collections.fields.where({ logicalFieldID: currentField.get('logicalFieldID') }).forEach(function (field) { - if (field === currentField) {} else if (field.get('fieldID') === currentField.get('fieldID')) {} else { - otherViewModes.push(field.getViewMode()); - } + if (field !== currentField && field.get('fieldID') !== currentField.get('fieldID')) { + otherViewModes.push(field.getViewMode()); + } }); return otherViewModes; }