Skip to content

Commit

Permalink
Merge pull request #137 from ezraroi/136-list-of-general-bets-is-not-…
Browse files Browse the repository at this point in the history
…shown-in-dashboard-view

fixed
  • Loading branch information
ezraroi authored Sep 21, 2024
2 parents f4818d2 + 4e40ea8 commit 1f94e08
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Mundialito/Client/src/Dashboard/Dashboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -268,8 +268,8 @@ <h4 class="media-heading"><a href="{{user.getUrl()}}">{{user.Place}}.
<tr ng-repeat="bet in generalBets">
<td>{{bet.OwnerName}}</td>
<td>{{usersDic[bet.OwnerId].Points}}</td>
<td>{{teamsDic[bet.WinningTeamId].Name}}</td>
<td>{{playersDic[bet.GoldenBootPlayerId].Name}}</td>
<td>{{bet.WinningTeam.Name}}</td>
<td>{{bet.GoldenBootPlayer.Name}}</td>
</tr>
</tbody>
</table>
Expand Down
4 changes: 2 additions & 2 deletions Mundialito/wwwroot/App/Dashboard/Dashboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -268,8 +268,8 @@ <h4 class="media-heading"><a href="{{user.getUrl()}}">{{user.Place}}.
<tr ng-repeat="bet in generalBets">
<td>{{bet.OwnerName}}</td>
<td>{{usersDic[bet.OwnerId].Points}}</td>
<td>{{teamsDic[bet.WinningTeamId].Name}}</td>
<td>{{playersDic[bet.GoldenBootPlayerId].Name}}</td>
<td>{{bet.WinningTeam.Name}}</td>
<td>{{bet.GoldenBootPlayer.Name}}</td>
</tr>
</tbody>
</table>
Expand Down

0 comments on commit 1f94e08

Please sign in to comment.