From 0458edd7bfd232adf678ede61b2dd9ac7945be46 Mon Sep 17 00:00:00 2001 From: Yordan Stoyanov Date: Wed, 10 Dec 2025 10:48:44 +0100 Subject: [PATCH] chore: update changelog --- packages/pluggableWidgets/gallery-web/CHANGELOG.md | 3 ++- .../pluggableWidgets/gallery-web/src/Gallery.editorConfig.ts | 4 ---- 2 files changed, 2 insertions(+), 5 deletions(-) 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 {