[frontend] Fix username rendering in Profile View

This commit is contained in:
Lilian 2024-06-27 13:22:51 +02:00 committed by Laura Hausmann
parent 10e772f2ab
commit 2332ce6ef8
No known key found for this signature in database
GPG key ID: D044E84C5BE01605

View file

@ -18,10 +18,11 @@
<div class="name-section">
<div class="name">@UserResponse.DisplayName</div>
<div class="identifier">
@UserResponse.Username
@@@UserResponse.Username
@if (UserResponse.Host != null)
{
@UserResponse.Host
var host = $"@{UserResponse.Host}";
@host
}
</div>
</div>