Skip to content

Commit

Permalink
last last last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
thom776g committed Dec 7, 2023
1 parent 9175138 commit eb4dc0d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions CentralHub.WebUI/Pages/Rooms.razor
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ else
{
Room = room;
Children = children;
TrackerCount = children.Length;
TrackerCount = children.Length;
}
public Room Room { get; set; }
public Tracker[] Children { get; set; }
Expand Down Expand Up @@ -558,7 +558,8 @@ else

private void ToggleNode(RoomWrapper wRoom)
{
wRoom.IsExpanded = wRoom.IsExpanded;
wRoom.IsExpanded = !wRoom.IsExpanded;
StateHasChanged();
}

private async Task HideModal(string modalId)
Expand Down

0 comments on commit eb4dc0d

Please sign in to comment.