diff options
author | Rory& <root@rory.gay> | 2024-05-14 17:49:09 +0200 |
---|---|---|
committer | Rory& <root@rory.gay> | 2024-05-14 17:49:09 +0200 |
commit | 41c5a84dacfd036b8d8f01f72226ac5a519995e3 (patch) | |
tree | a4bfc76541692cbbb0fc18f34463cf31a57440f5 /MatrixUtils.Web/Pages/Client/ClientComponents/ClientRoomList.razor | |
parent | Improve the heatmap layout (diff) | |
download | MatrixUtils-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.razor | 15 |
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 |