diff options
author | TheArcaneBrony <myrainbowdash949@gmail.com> | 2023-10-25 14:00:02 +0200 |
---|---|---|
committer | TheArcaneBrony <myrainbowdash949@gmail.com> | 2023-10-25 14:00:02 +0200 |
commit | 89315fa530e1f21e2e50d94f955693b9413c98fe (patch) | |
tree | bc0747aa1b4f53147030be26c24d079fb0b34001 /MatrixRoomUtils.Web/Shared/UserListItem.razor | |
parent | Clean up MRUStorageWrapper (diff) | |
download | MatrixUtils-89315fa530e1f21e2e50d94f955693b9413c98fe.tar.xz |
New things
Diffstat (limited to 'MatrixRoomUtils.Web/Shared/UserListItem.razor')
-rw-r--r-- | MatrixRoomUtils.Web/Shared/UserListItem.razor | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MatrixRoomUtils.Web/Shared/UserListItem.razor b/MatrixRoomUtils.Web/Shared/UserListItem.razor index 96e8e64..167809e 100644 --- a/MatrixRoomUtils.Web/Shared/UserListItem.razor +++ b/MatrixRoomUtils.Web/Shared/UserListItem.razor @@ -1,6 +1,7 @@ @using LibMatrix.Helpers @using LibMatrix.EventTypes.Spec.State @using LibMatrix.Homeservers +@using LibMatrix.Responses <div style="background-color: #ffffff11; border-radius: 25px; margin: 8px; width: fit-Content;"> <img style="@(ChildContent is not null ? "vertical-align: baseline;" : "") width: 32px; height: 32px; border-radius: 50%;" src="@(string.IsNullOrWhiteSpace(User?.AvatarUrl) ? "https://api.dicebear.com/6.x/identicon/svg?seed=" + UserId : User.AvatarUrl)"/> <span style="vertical-align: middle; margin-right: 8px; border-radius: 75px;">@User?.DisplayName</span> @@ -19,7 +20,7 @@ public RenderFragment? ChildContent { get; set; } [Parameter] - public ProfileResponseEventContent? User { get; set; } + public UserProfileResponse? User { get; set; } [Parameter] public string UserId { get; set; } |