Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FFWEB-3126: Handle js error if wishlist plugin is active #226

Merged
merged 1 commit into from
Jul 24, 2024
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Changelog
## Unreleased
### Fix
- Handle js error if wishlist plugin is active

## [v2.1.0] - 2024.07.10
### Fix
- Handle category-page for ff-communication
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "omikron/shopware6-factfinder",
"description": "FACT-Finder® Web Components for Shopware 6",
"type": "shopware-platform-plugin",
"version": "2.0.0",
"version": "2.1.0",
"license": "proprietary",
"authors": [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
</div>

<div class="col-12">
<div class="cms-element-product-listing-wrapper pt-3">
<div class="ff-cms-element-product-listing-wrapper pt-3">
<div class="cms-element-product-listing">
<div class="cms-element-product-listing-actions row justify-content-between">
<div class="col-md-auto pt-3" data-cms-element-id="{{ element.id }}">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
</div>
</div>

<div class="cms-element-product-listing-wrapper">
<div class="ff-cms-element-product-listing-wrapper">
<div class="cms-element-product-listing">
{% sw_include '@Parent/storefront/components/factfinder/toolbar.html.twig' %}
{% sw_include '@Parent/storefront/components/factfinder/record-list.html.twig' with { subscribe: true, class: 'row cms-listing-row', ssr: page.extensions.factfinder.ssr } %}
Expand Down
Loading