Skip to content

Commit c9c7716

Browse files
committed
fix: prevent SfSidebar disableBodyScroll triggering on desktop
M2-571 See vuestorefront/storefront-ui#619
1 parent b373794 commit c9c7716

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/theme/modules/catalog/category/components/filters/CategoryFilters.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,10 @@
6363
</SfButton>
6464
</div>
6565
</div>
66+
<!-- Do not use :visible="isVisible" - it causes M2-571 -->
6667
<SfSidebar
67-
:visible="isVisible"
68+
v-if="isVisible"
69+
visible
6870
class="sidebar-filters smartphone-only"
6971
title="Filters"
7072
@close="$emit('close')"

0 commit comments

Comments
 (0)