Skip to content

Commit

Permalink
SongInfoCard: Move VNDB link
Browse files Browse the repository at this point in the history
might be awkward if we implement EGS links later on
closes #35
  • Loading branch information
mertvn committed Jun 13, 2023
1 parent 62807e4 commit 68d604d
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions EMQ/Client/Components/SongInfoCardComponent.razor
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,17 @@
for (int index = 0; index < songTypes.Count; index++)
{
SongSourceSongType songType = songTypes[index];
<span>@songType</span>

<a class="songSourceVNID link-primary" href="@songSourceVNID" target="_blank">
<span>@songType</span>
</a>

if (index + 1 != songTypes.Count)
{
<span>, </span>
}
}

// todo fix underline being too long
<span></span>
<a class="songSourceVNID link-primary" href="@songSourceVNID" target="_blank">
<span>(VN)</span>
</a>
<br/>
}
}
Expand Down

0 comments on commit 68d604d

Please sign in to comment.