mirror of
https://github.com/dotnet/intro-to-dotnet-web-dev.git
synced 2026-04-21 06:13:49 +00:00
Merge pull request #18 from EducatedStrikeCart/Fix_LastColumnUnableToFill
Fix a bug preventing last column of Connect Four from being filled
This commit is contained in:
commit
7549d7bdd9
3 changed files with 9 additions and 9 deletions
|
|
@ -289,13 +289,13 @@ The [GameState.cs file is in this repository](1-complete/ConnectFour/Shared/Game
|
|||
|
||||
```csharp
|
||||
<nav>
|
||||
<span title="Click to play a piece" @onclick="() => PlayPiece(0)">🔽</span>
|
||||
<span title="Click to play a piece" @onclick="() => PlayPiece(1)">🔽</span>
|
||||
<span title="Click to play a piece" @onclick="() => PlayPiece(2)">🔽</span>
|
||||
<span title="Click to play a piece" @onclick="() => PlayPiece(3)">🔽</span>
|
||||
<span title="Click to play a piece" @onclick="() => PlayPiece(4)">🔽</span>
|
||||
<span title="Click to play a piece" @onclick="() => PlayPiece(5)">🔽</span>
|
||||
<span title="Click to play a piece" @onclick="() => PlayPiece(6)">🔽</span>
|
||||
<span title="Click to play a piece" @onclick="() => PlayPiece(7)">🔽</span>
|
||||
</nav>
|
||||
```
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue