diff --git a/packages/pluggableWidgets/gallery-web/CHANGELOG.md b/packages/pluggableWidgets/gallery-web/CHANGELOG.md index 96418c03b2..a3cc035bf1 100644 --- a/packages/pluggableWidgets/gallery-web/CHANGELOG.md +++ b/packages/pluggableWidgets/gallery-web/CHANGELOG.md @@ -8,10 +8,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### Fixed -- We added missing dutch translations for Gallery. +- We fixed an issue where the row count wasn't displayed when "Virtual scroll" is on. ### Added +- We added missing dutch translations for Gallery. - We added a refresh interval property, to allow defining an interval (in seconds) for refreshing the content in Gallery ## [3.7.0] - 2025-11-11 diff --git a/packages/pluggableWidgets/gallery-web/src/Gallery.editorConfig.ts b/packages/pluggableWidgets/gallery-web/src/Gallery.editorConfig.ts index e12b6a9c14..d49a162efa 100644 --- a/packages/pluggableWidgets/gallery-web/src/Gallery.editorConfig.ts +++ b/packages/pluggableWidgets/gallery-web/src/Gallery.editorConfig.ts @@ -34,10 +34,6 @@ export function getProperties(values: GalleryPreviewProps, defaultProperties: Pr hidePropertyIn(defaultProperties, values, "onConfigurationChange"); } - // Hide scrolling settings for now. - hidePropertiesIn(defaultProperties, values, ["showPagingButtons", "showTotalCount"]); - /** Pagination */ - if (values.pagination === "buttons") { hidePropertyIn(defaultProperties, values, "showTotalCount"); } else {