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

## [Unreleased]

### Fixed

- We fixed an issue where the row count wasn't displayed when "Virtual scroll" is on.

### Added

- We added a refresh interval property, to allow defining an interval (in seconds) for refreshing the content in Gallery
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
Loading