Skip to content

Commit

Permalink
1) Fix error in RenderDefaultHeaderContent related to recent tooltip …
Browse files Browse the repository at this point in the history
…work

2) Udo country code rename
  • Loading branch information
vnbaaij committed Oct 6, 2023
1 parent 71f5c73 commit 5d2b112
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/Demo/Shared/SampleData/DataSource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public Task<Country[]> GetCountriesAsync()
new Person ( PersonId: 6, FirstName: "Bert", LastName: "de Vries", CountryCode: "NL", BirthDate: new DateOnly(1999, 6, 9), Picture: ImageFaces[5] ),
new Person ( PersonId: 7, FirstName: "Jaques", LastName: "Martin", CountryCode: "BE", BirthDate: new DateOnly(2002, 10, 20), Picture: ImageFaces[6] ),
new Person ( PersonId: 8, FirstName: "Elizabeth", LastName: "Johnson", CountryCode: "GB", BirthDate: new DateOnly(1971, 11, 24), Picture: ImageFaces[7] ),
new Person ( PersonId: 9, FirstName: "Jakob", LastName: "Berger", CountryCode: "D", BirthDate: new DateOnly(1971, 4, 21), Picture: string.Empty )
new Person ( PersonId: 9, FirstName: "Jakob", LastName: "Berger", CountryCode: "DE", BirthDate: new DateOnly(1971, 4, 21), Picture: string.Empty )
};

public class MonthItem
Expand Down
2 changes: 1 addition & 1 deletion src/Core/Components/DataGrid/Columns/ColumnBase.razor
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

if (Sortable.HasValue ? Sortable.Value : IsSortableByDefault())
{
<FluentButton Appearance="Appearance.Stealth" class="col-sort-button" @onclick="@(() => Grid.SortByColumnAsync(this))" aria-label="@tooltip")" title="@tooltip">
<FluentButton Appearance="Appearance.Stealth" class="col-sort-button" @onclick="@(() => Grid.SortByColumnAsync(this))" aria-label="@tooltip" title="@tooltip">
<div class="col-title-text" title="@tooltip">@Title</div>

@if (Grid.SortByAscending.HasValue && ShowSortIcon)
Expand Down

0 comments on commit 5d2b112

Please sign in to comment.