Skip to content

Commit

Permalink
[DataGrid] give empty row an id (#2001)
Browse files Browse the repository at this point in the history
Co-authored-by: AI\jvermeyl <joris.vermeylen@uzgent.be>
Co-authored-by: Vincent Baaij <vnbaaij@outlook.com>
  • Loading branch information
3 people committed May 15, 2024
1 parent f43eb41 commit fed6565
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Core/Components/DataGrid/FluentDataGrid.razor
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@
return;
}
// If we use the Blazor components here the renderer gets upset/lost, so we use the web components directly
<fluent-data-grid-row class="empty-content-row">
<fluent-data-grid-row class="empty-content-row" row-id="empty-row">
<fluent-data-grid-cell class="empty-content-cell">
@if (EmptyContent is null)
{
Expand Down

0 comments on commit fed6565

Please sign in to comment.