Skip to content

Commit

Permalink
Merge pull request #66 from Ian-Inizias/master
Browse files Browse the repository at this point in the history
Correct sum
  • Loading branch information
Ian-Liceranzu authored Jan 3, 2024
2 parents 3e51579 + 2466d97 commit 35e4841
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 12 deletions.
2 changes: 1 addition & 1 deletion BasketLeague2.App/Pages/Players/PlayerStats.razor
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
<td>@day[4]</td>
<td>@day[5]</td>
<td>@day[6]</td>
<td>@day.Sum()</td>
<td>@day.Skip(1).Sum()</td>
</tr>
}
</tbody>
Expand Down
11 changes: 0 additions & 11 deletions BasketLeague2.App/wwwroot/data/teams.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,4 @@
[
{
"Codigo": 0,
"NombreCompleto": "Agentes Libres",
"Nombre": "AL",
"Ataque": 0,
"Defensa":0,
"Tiro": 0,
"Rebote": 0,
"Dueño": "-",
"Estado": "-"
},
{
"Codigo": 1,
"NombreCompleto": "Milwaukee Platypus",
Expand Down

0 comments on commit 35e4841

Please # to comment.