about summary refs log tree commit diff
path: root/MatrixRoomUtils.Web/Shared/RoomListComponents/RoomListCategory.razor
diff options
context:
space:
mode:
Diffstat (limited to 'MatrixRoomUtils.Web/Shared/RoomListComponents/RoomListCategory.razor')
-rw-r--r--MatrixRoomUtils.Web/Shared/RoomListComponents/RoomListCategory.razor4
1 files changed, 2 insertions, 2 deletions
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<string, List<Room>> Category { get; set; }
+    public KeyValuePair<string, List<GenericRoom>> Category { get; set; }
 
     private string roomType => Category.Key;
-    private List<Room> rooms => Category.Value;
+    private List<GenericRoom> rooms => Category.Value;
     
 }
\ No newline at end of file