about summary refs log tree commit diff
path: root/MatrixUtils.Web/Pages/Client/ClientComponents/ClientRoomList.razor
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2024-05-14 17:49:09 +0200
committerRory& <root@rory.gay>2024-05-14 17:49:09 +0200
commit41c5a84dacfd036b8d8f01f72226ac5a519995e3 (patch)
treea4bfc76541692cbbb0fc18f34463cf31a57440f5 /MatrixUtils.Web/Pages/Client/ClientComponents/ClientRoomList.razor
parentImprove the heatmap layout (diff)
downloadMatrixUtils-41c5a84dacfd036b8d8f01f72226ac5a519995e3.tar.xz
Organise tools somewhat, set proper icons for nav menu
Diffstat (limited to 'MatrixUtils.Web/Pages/Client/ClientComponents/ClientRoomList.razor')
-rw-r--r--MatrixUtils.Web/Pages/Client/ClientComponents/ClientRoomList.razor15
1 files changed, 0 insertions, 15 deletions
diff --git a/MatrixUtils.Web/Pages/Client/ClientComponents/ClientRoomList.razor b/MatrixUtils.Web/Pages/Client/ClientComponents/ClientRoomList.razor
deleted file mode 100644
index 845f30d..0000000
--- a/MatrixUtils.Web/Pages/Client/ClientComponents/ClientRoomList.razor
+++ /dev/null
@@ -1,15 +0,0 @@
-@using ClientContext = MatrixUtils.Web.Pages.Client.Index.ClientContext
-@* user header and room list *@
-@foreach (var room in Data.SyncWrapper.Rooms) {
-    <LinkButton OnClick="@(async () => Data.SelectedRoom = room)" Color="@(Data.SelectedRoom == room ? "#FF00FF" : "")">
-        @room.RoomName
-    </LinkButton>
-    <br/>
-}
-
-@code {
-
-    [Parameter]
-    public ClientContext Data { get; set; } = null!;
-
-}
\ No newline at end of file