Skip to content

Commit

Permalink
reversed the order of action links at the song page
Browse files Browse the repository at this point in the history
  • Loading branch information
pavel-zhur committed Jul 18, 2024
1 parent 4c2bdd7 commit 89c91e5
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@
</div>

<ul>
<li>
@Html.ActionLink(ViewLocalizer["Go to the song page"].Value, "Song", "Home", new SongModel { ExternalId = Model.ExternalId, })
</li>
<li>
@if (Model.IncludeTrace)
{
Expand All @@ -47,9 +50,6 @@
@Html.ActionLink(ViewLocalizer["Include the Index API trace for developers"].Value, "Song", Model with { IncludeTrace = true })
}
</li>
<li>
@Html.ActionLink(ViewLocalizer["Go to the song page"].Value, "Song", "Home", new SongModel { ExternalId = Model.ExternalId, })
</li>
</ul>

<div class="mt-4">
Expand Down

0 comments on commit 89c91e5

Please sign in to comment.