From bb8c2637af3b7982e7a4b2fd15e2fbec613d0848 Mon Sep 17 00:00:00 2001 From: TheArcaneBrony Date: Fri, 30 Jun 2023 03:36:58 +0200 Subject: Todays progress --- MatrixRoomUtils.Web/Shared/RoomListComponents/RoomListCategory.razor | 4 ++-- MatrixRoomUtils.Web/Shared/RoomListComponents/RoomListSpace.razor | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'MatrixRoomUtils.Web/Shared/RoomListComponents') diff --git a/MatrixRoomUtils.Web/Shared/RoomListComponents/RoomListCategory.razor b/MatrixRoomUtils.Web/Shared/RoomListComponents/RoomListCategory.razor index ecdcc68..a7e9399 100644 --- a/MatrixRoomUtils.Web/Shared/RoomListComponents/RoomListCategory.razor +++ b/MatrixRoomUtils.Web/Shared/RoomListComponents/RoomListCategory.razor @@ -16,9 +16,9 @@ @code { [Parameter] - public KeyValuePair> Category { get; set; } + public KeyValuePair> Category { get; set; } private string roomType => Category.Key; - private List rooms => Category.Value; + private List rooms => Category.Value; } \ No newline at end of file diff --git a/MatrixRoomUtils.Web/Shared/RoomListComponents/RoomListSpace.razor b/MatrixRoomUtils.Web/Shared/RoomListComponents/RoomListSpace.razor index c90ae8f..5d106c3 100644 --- a/MatrixRoomUtils.Web/Shared/RoomListComponents/RoomListSpace.razor +++ b/MatrixRoomUtils.Web/Shared/RoomListComponents/RoomListSpace.razor @@ -14,7 +14,7 @@ @code { [Parameter] - public Room Space { get; set; } + public GenericRoom Space { get; set; } [Parameter, CascadingParameter] public string? Breadcrumbs { @@ -22,7 +22,7 @@ set => _breadcrumbs = value; } - private List Children { get; set; } = new(); + private List Children { get; set; } = new(); protected override async Task OnInitializedAsync() { if (Breadcrumbs == null) throw new ArgumentNullException(nameof(Breadcrumbs)); -- cgit 1.5.1