Skip to content

Commit

Permalink
fix(datagrid-web): add check for isloading for emptyListMessage
Browse files Browse the repository at this point in the history
  • Loading branch information
rahmanunver committed Jan 31, 2025
1 parent e01dd5b commit 99d7410
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions packages/pluggableWidgets/datagrid-web/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

- We have optimized some internal workings to improve export to Excel performance.

### Fixed

- We fixed an issue with the loading indicator visibility.

## [2.29.1] - 2025-01-24

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion packages/pluggableWidgets/datagrid-web/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@mendix/datagrid-web",
"widgetName": "Datagrid",
"version": "2.29.1",
"version": "2.29.2",
"description": "",
"copyright": "© Mendix Technology BV 2023. All rights reserved.",
"private": true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,7 @@ const Main = observer(<C extends GridColumn>(props: WidgetProps<C>): ReactElemen
pageSize={props.pageSize}
/>
{(rows.length === 0 || preview) &&
!props.isLoading &&
emptyPlaceholderRenderer &&
emptyPlaceholderRenderer(children => (
<div
Expand Down
2 changes: 1 addition & 1 deletion packages/pluggableWidgets/datagrid-web/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="Datagrid" version="2.29.1" xmlns="http://www.mendix.com/clientModule/1.0/">
<clientModule name="Datagrid" version="2.29.2" xmlns="http://www.mendix.com/clientModule/1.0/">
<widgetFiles>
<widgetFile path="Datagrid.xml" />
</widgetFiles>
Expand Down

0 comments on commit 99d7410

Please sign in to comment.