Skip to content

Commit 494e2ca

Browse files
committed
version update to 1.7.3
1 parent a7368e4 commit 494e2ca

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/BlazorBootstrap.Examples/BlazorBootstrap.Examples/BlazorBootstrap.Examples.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Blazor.Bootstrap" Version="1.7.0" />
10+
<PackageReference Include="Blazor.Bootstrap" Version="1.7.3" />
1111
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="7.0.4" />
1212
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="7.0.4" PrivateAssets="all" />
1313
</ItemGroup>

src/BlazorBootstrap.Examples/BlazorBootstrap.Examples/Pages/Employee/Employees.razor

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@
5151

5252
private async Task<GridDataProviderResult<Employee>> EmployeesDataProvider(GridDataProviderRequest<Employee> request)
5353
{
54+
Console.WriteLine("EmployeesDataProvider called...");
55+
5456
if (employees is null) // pull employees only one time for client-side filtering, sorting, and paging
5557
employees = GetEmployees(); // call a service or an API to pull the employees
5658

0 commit comments

Comments
 (0)