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
2 changes: 2 additions & 0 deletions packages/pluggableWidgets/gallery-web/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

- We fixed an issue where the Gallery widget could crash with an "invalid attribute id" error when a stored sort order referenced an attribute that was no longer available. The widget now falls back to the default sort order instead.

- We fixed an issue in Studio Pro design mode where widgets placed inside a gallery item could not be selected or hovered. Double-clicking them opened the properties of the surrounding container instead.

## [3.11.3] - 2026-07-27

### Fixed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,8 @@
rgba(255, 255, 255, 0.75) 100%
);
z-index: 1;
// Purely decorative fade. Without this, the overlay swallows hit-testing in
// Studio Pro design mode, so clicks on widgets inside a gallery item resolve
// to the surrounding container instead.
pointer-events: none;
}
Loading