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] Render emojis in top bar of SingleNote page

pancakes 7841bfa1 f56f9473

+8 -1
+8 -1
Iceshrimp.Frontend/Pages/SingleNote.razor
··· 25 25 { 26 26 <SectionContent SectionName="top-bar"> 27 27 <Icon Name="Icons.Signpost"></Icon> 28 - @Loc["Note by {0}", (RootNote?.User.DisplayName ?? RootNote?.User.Username) ?? string.Empty] 28 + @if (RootNote is { User.DisplayName: not null } && RootNote.User.Emojis.Count != 0) 29 + { 30 + <MfmText Text="@Loc["Note by {0}", RootNote.User.DisplayName]" Emoji="@RootNote.User.Emojis" Simple="@true"/> 31 + } 32 + else 33 + { 34 + @Loc["Note by {0}", (RootNote?.User.DisplayName ?? RootNote?.User.Username) ?? string.Empty] 35 + } 29 36 </SectionContent> 30 37 <div @ref="Scroller" class="scroller"> 31 38 <div class="wrapper">