From f43e1a7bc157067b6e801c5f3a00508720707b42 Mon Sep 17 00:00:00 2001 From: Gordon Pedersen Date: Tue, 18 Jun 2024 16:46:01 +1000 Subject: [PATCH] minor fixes - no bio if empty - fixed prami size on mobile --- Components/Layout/AvatarMenu.razor | 2 +- Components/Pages/Person.razor | 32 ++++++++++++++++-------------- 2 files changed, 18 insertions(+), 16 deletions(-) diff --git a/Components/Layout/AvatarMenu.razor b/Components/Layout/AvatarMenu.razor index 9842548..3e74d6e 100644 --- a/Components/Layout/AvatarMenu.razor +++ b/Components/Layout/AvatarMenu.razor @@ -49,7 +49,7 @@ - @@ -63,8 +65,8 @@
- - @if (Address == State.SelectedAddressName) { + + @if (IsMe) { @@ -100,7 +102,7 @@ private StatusList StatusList { get; set; } private PicList PicList { get; set; } - private bool Editable { + private bool IsMe { get => Address == State.SelectedAddressName; }