Skip to content

Commit

Permalink
Corrected issue with nickname addition
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMrDew committed Feb 9, 2024
1 parent c61782f commit 3021930
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Pokedex/Pokedex/Views/ShinyHunt/ShinyHuntPhases.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<link href="~/css/shinyHunts.css" rel="stylesheet" asp-append-version="true" />
}

<h3>Phases for @Model.ShinyHunt.Pokemon.Name@(!string.IsNullOrEmpty(Model.ShinyHunt.Pokemon.Nickname) ? string.Concat("(", Model.ShinyHunt.Pokemon.Nickname, ")"))</h3>
<h3>Phases for @Model.ShinyHunt.Pokemon.Name@(!string.IsNullOrEmpty(Model.ShinyHunt.Nickname) ? string.Concat("(", Model.ShinyHunt.Nickname, ")") : string.Empty)</h3>

<div class="grid-container">
@foreach (var shinyHunt in Model.AllShinyHunts)
Expand Down

0 comments on commit 3021930

Please sign in to comment.