diff --git a/CHANGELOG.md b/CHANGELOG.md index c484ef9270..a45c442775 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,6 +30,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fixed `Processing order...` modal closing too early - @grimasod (#4021) - Keep registered payment methods after `syncTotals` - @grimasod (#4020) - Added status code to the cache content and use it in cache response - @resubaka (#4014) +- Fixed sku attribute is missing on compare page - @gibkigonzo (#4036) - Fixed z-index for aside in compare list - @gibkigonzo (#4037) - Disable checking max quantity when manage stock is set to false - @gibkigonzo (#4038) diff --git a/core/modules/catalog/helpers/filterAttributes.ts b/core/modules/catalog/helpers/filterAttributes.ts index fed1e51e57..ff3b26013b 100644 --- a/core/modules/catalog/helpers/filterAttributes.ts +++ b/core/modules/catalog/helpers/filterAttributes.ts @@ -14,9 +14,6 @@ export default function filterAttributes ({ codesList: any }) { return filterValues.filter(fv => { - if (config.entities.product.standardSystemFields.indexOf(fv) >= 0) { - return false - } if (fv.indexOf('.') >= 0) { return false }