Skip to content

Commit

Permalink
fix(gallery-native): resolve issue with loading indicator
Browse files Browse the repository at this point in the history
  • Loading branch information
UrazAkgultan committed Jan 25, 2024
1 parent 1c9fb11 commit d99fd75
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions packages/pluggableWidgets/gallery-native/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'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
Expand Down
2 changes: 1 addition & 1 deletion packages/pluggableWidgets/gallery-native/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion packages/pluggableWidgets/gallery-native/src/Gallery.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export const Gallery = (props: GalleryProps<GalleryStyle>): 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}
Expand Down
2 changes: 1 addition & 1 deletion packages/pluggableWidgets/gallery-native/src/package.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<package xmlns="http://www.mendix.com/package/1.0/">
<clientModule name="Gallery" version="1.0.2" xmlns="http://www.mendix.com/clientModule/1.0/">
<clientModule name="Gallery" version="1.0.3" xmlns="http://www.mendix.com/clientModule/1.0/">
<widgetFiles>
<widgetFile path="Gallery.xml" />
</widgetFiles>
Expand Down

0 comments on commit d99fd75

Please sign in to comment.