diff --git a/packages/pluggableWidgets/gallery-native/CHANGELOG.md b/packages/pluggableWidgets/gallery-native/CHANGELOG.md index 28b93b07b..1426977a9 100644 --- a/packages/pluggableWidgets/gallery-native/CHANGELOG.md +++ b/packages/pluggableWidgets/gallery-native/CHANGELOG.md @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +### Fixed + +- We've resolved an issue where the loading indicator was triggered when pulling down the list, even in the absence of a pull-down event. + ## [1.0.2] - 2023-5-24 ### Fixed diff --git a/packages/pluggableWidgets/gallery-native/package.json b/packages/pluggableWidgets/gallery-native/package.json index aa02b268c..f75b3fd48 100644 --- a/packages/pluggableWidgets/gallery-native/package.json +++ b/packages/pluggableWidgets/gallery-native/package.json @@ -1,7 +1,7 @@ { "name": "gallery-native", "widgetName": "Gallery", - "version": "1.0.2", + "version": "1.0.3", "description": "A flexible gallery widget that renders columns, rows and layouts.", "copyright": "© Mendix Technology BV 2022. All rights reserved.", "license": "Apache-2.0", diff --git a/packages/pluggableWidgets/gallery-native/src/Gallery.tsx b/packages/pluggableWidgets/gallery-native/src/Gallery.tsx index 6e829a1a5..a32886d77 100644 --- a/packages/pluggableWidgets/gallery-native/src/Gallery.tsx +++ b/packages/pluggableWidgets/gallery-native/src/Gallery.tsx @@ -115,7 +115,7 @@ export const Gallery = (props: GalleryProps): ReactElement => { pagination={props.pagination} loadMoreButtonCaption={props.loadMoreButtonCaption} phoneColumns={props.phoneColumns} - pullDown={pullDown} + pullDown={props.pullDown && pullDown} pullDownIsExecuting={props.pullDown?.isExecuting ?? false} scrollDirection={props.scrollDirection} style={styles} diff --git a/packages/pluggableWidgets/gallery-native/src/package.xml b/packages/pluggableWidgets/gallery-native/src/package.xml index c6cd20781..4b7e53c21 100644 --- a/packages/pluggableWidgets/gallery-native/src/package.xml +++ b/packages/pluggableWidgets/gallery-native/src/package.xml @@ -1,6 +1,6 @@ - +