Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
}

.demo-section-example {
min-height: 135px!important;
height: 100%;
}

Expand Down Expand Up @@ -74,6 +75,7 @@
}

.demo-section-example {
min-height: 135px !important;
height: 100%;
}

Expand Down
2 changes: 1 addition & 1 deletion src/Core/Components/DataGrid/FluentDataGrid.razor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ protected override Task OnParametersSetAsync()
Pagination?.ItemsPerPage != _lastRefreshedPaginationState?.ItemsPerPage
|| Pagination?.CurrentPageIndex != _lastRefreshedPaginationState?.CurrentPageIndex;

var mustRefreshData = dataSourceHasChanged || paginationStateHasChanged || Loading is null;
var mustRefreshData = dataSourceHasChanged || paginationStateHasChanged || EffectiveLoadingValue;

// We don't want to trigger the first data load until we've collected the initial set of columns,
// because they might perform some action like setting the default sort order, so it would be wasteful
Expand Down
Loading