a fork of iceshrimp.net but a tweaked frontend to my personal liking. waow
fediverse social-media social iceshrimp fedi
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[frontend/components] Add missing top-bar section on profile page

pancakes a085bb1b 383491c3

+13
+13
Iceshrimp.Frontend/Pages/ProfileView.razor
··· 8 8 @using Microsoft.AspNetCore.Authorization 9 9 @using Iceshrimp.Assets.PhosphorIcons 10 10 @using Iceshrimp.Frontend.Localization 11 + @using Microsoft.AspNetCore.Components.Sections 11 12 @using Microsoft.Extensions.Localization 12 13 @attribute [Authorize] 13 14 @inject ApiService Api ··· 16 17 @inject IStringLocalizer<Localization> Loc; 17 18 @inject MetadataService MetadataService 18 19 @inject NavigationManager Nav; 20 + 21 + <SectionContent SectionName="top-bar"> 22 + <Icon Name="Icons.User"/> 23 + @if (_init) 24 + { 25 + <UserDisplayName User="@UserResponse"/> 26 + } 27 + else 28 + { 29 + @Loc["Profile"] 30 + } 31 + </SectionContent> 19 32 20 33 @if (_init) 21 34 {