Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
3 changes: 0 additions & 3 deletions core/modules/catalog/helpers/filterAttributes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down