From e1e54029cdfa2566af8ddb5a0194bd59dc2075eb Mon Sep 17 00:00:00 2001 From: pancakes Date: Fri, 21 Mar 2025 13:52:47 +1000 Subject: [PATCH] [frontend/pages] Rearrange profile menu items, apply danger style, and change temp mute icon --- Iceshrimp.Frontend/Pages/ProfileView.razor | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Iceshrimp.Frontend/Pages/ProfileView.razor b/Iceshrimp.Frontend/Pages/ProfileView.razor index 1aafb0ae..f91be2d8 100644 --- a/Iceshrimp.Frontend/Pages/ProfileView.razor +++ b/Iceshrimp.Frontend/Pages/ProfileView.razor @@ -102,12 +102,6 @@ @if (Profile != null && !Profile.Relations.HasFlag(Relations.Self)) {
- @if (Profile != null && Profile.Relations.HasFlag(Relations.FollowedBy)) - { - - @Loc["Remove follower"] - - } @if (Profile != null && Profile.Relations.HasFlag(Relations.Muting)) { @@ -119,19 +113,25 @@ @Loc["Mute"] - + @Loc["Temporary mute"] } + @if (Profile != null && Profile.Relations.HasFlag(Relations.FollowedBy)) + { + + @Loc["Remove follower"] + + } @if (Profile != null && Profile.Relations.HasFlag(Relations.Blocking)) { - + @Loc["Unblock"] } else { - + @Loc["Block"] }