Skip to content

Commit

Permalink
fixed simulate game
Browse files Browse the repository at this point in the history
  • Loading branch information
ezraroi committed Jun 27, 2024
1 parent 71b2b5a commit 70130ae
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Mundialito/Client/src/Games/Game.html
Original file line number Diff line number Diff line change
Expand Up @@ -413,9 +413,9 @@ <h5 ng-show="game.GameStatsPage !== null"><a target="_blank" ng-href="{{game.Gam
<select id="game_cards" name="game_cards" ui-select2="{allowClear: false}"
class="form-control" ng-model="simulatedGame.CardsMark" required
placeholder="Game Cards Mark">
<option value="1">1</option>
<option value="1">{{game.HomeTeam.Name}}</option>
<option value="X">X</option>
<option value="2">2</option>
<option value="2">{{game.AwayTeam.Name}}</option>
</select>
</div>
</div>
Expand All @@ -425,9 +425,9 @@ <h5 ng-show="game.GameStatsPage !== null"><a target="_blank" ng-href="{{game.Gam
<select id="game_corners" name="game_corners" ui-select2="{allowClear: false}"
class="form-control" ng-model="simulatedGame.CornersMark" required
placeholder="Game Corners Mark">
<option value="1">1</option>
<option value="1">{{game.HomeTeam.Name}}</option>
<option value="X">X</option>
<option value="2">2</option>
<option value="2">{{game.AwayTeam.Name}}</option>
</select>
</div>
</div>
Expand Down

0 comments on commit 70130ae

Please sign in to comment.