Skip to content

Commit

Permalink
Merge pull request #37 from Ian-Liceranzu/Ian-Liceranzu-patch-1
Browse files Browse the repository at this point in the history
Update Index.razor filenaming fix
  • Loading branch information
Ian-Liceranzu authored Jul 26, 2023
2 parents 02a5365 + 171c831 commit 9aaaba2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions BasketLeague2.App/Pages/Index.razor
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ Bienvenido a la mejor liga de basket del mundo

private async Task GetResults()
{
var r = await Http.GetFromJsonAsync<IEnumerable<Result>>("data/results/S2.json");
var r = await Http.GetFromJsonAsync<IEnumerable<Result>>("data/results/R_S2.json");
_results = _results.Concat(r);
}

Expand All @@ -98,4 +98,4 @@ Bienvenido a la mejor liga de basket del mundo
_equipo4 = _results.GroupBy(r => r.Equipo2).Select(r => new Team { NombreCompleto = _teams.First(t => t.Codigo == int.Parse(r.First().Equipo2)).NombreCompleto, DIF = r.Sum(r => r.Resultado1) }).MinBy(r => r.DIF);
}

}
}

0 comments on commit 9aaaba2

Please # to comment.