Skip to content

Commit

Permalink
release v2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Aleksander Laurowski committed Oct 1, 2021
1 parent 50b3fe2 commit bea83cf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Changelog
## Unreleased
## [v2.2.0] - 2021.10.01
### Added
- SSR
- Add Single Hit Redirection feature when SSR is enabled
Expand All @@ -10,13 +10,15 @@

### Changed
Navigation
- Remove category filter from ff-asn block on Category page
- Remove category filter from ff-asn block on Category pages

### Fix
- SSR
- after first search with 0 result, next will render no products even if FACT-Finder returns them
- Import
- PushImport triggers not implemented `running` method in Communication SDK for 7.3 version
- Export
- Fix export does not check if product options are not null in ConfigurableDataProvider::getOptions

## [v2.1.0] - 2021.07.15
### Added
Expand Down Expand Up @@ -332,6 +334,7 @@
### Added
- Feed Export: Export feed file is now available via separate link

[v2.2.0]: https://github.com/FACT-Finder-Web-Components/magento2-module/releases/tag/v2.2.0
[v2.1.0]: https://github.com/FACT-Finder-Web-Components/magento2-module/releases/tag/v2.1.0
[v2.0.2]: https://github.com/FACT-Finder-Web-Components/magento2-module/releases/tag/v2.0.2
[v2.0.1]: https://github.com/FACT-Finder-Web-Components/magento2-module/releases/tag/v2.0.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

<script>
document.addEventListener('ffReady', function (ff) {

ff.resultDispatcher.addCallback("asn", function (asnData) {
if (factfinder.communication.Util.isNg()) {
asnData.splice(asnData.findIndex(function (element) {
Expand All @@ -13,7 +12,7 @@

asnData.splice(asnData.findIndex(function (group) {
return group.elements.every(function (element) {
return element.associatedFieldName === associatedFieldName;
return element.associatedFieldName.indexOf(associatedFieldName) === 0;
});
}), 1);
}
Expand Down

0 comments on commit bea83cf

Please sign in to comment.