diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/domains/rooms/components/rooms-lists/rooms-lists.component.html b/meet-ce/frontend/projects/shared-meet-components/src/lib/domains/rooms/components/rooms-lists/rooms-lists.component.html index 2f932eb9..fc2e8735 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/domains/rooms/components/rooms-lists/rooms-lists.component.html +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/domains/rooms/components/rooms-lists/rooms-lists.component.html @@ -1,4 +1,4 @@ -@if (!loading && rooms.length === 0 && !showEmptyFilterMessage) { +@if (!loading() && rooms().length === 0 && !showEmptyFilterMessage) {
@@ -18,7 +18,7 @@
- @if (showSearchBox) { + @if (showSearchBox()) { Search rooms @@ -44,14 +44,14 @@
- @if (showSelection && selectedRooms().size > 0) { + @if (showSelection() && selectedRooms().size > 0) {
- @if (showFilters) { + @if (showFilters()) { @@ -117,12 +117,12 @@ - @if (loading) { + @if (loading()) {
Loading rooms...
- } @else if (rooms.length === 0 && showEmptyFilterMessage) { + } @else if (rooms().length === 0 && showEmptyFilterMessage) {
@@ -141,7 +141,7 @@
- @if (showSelection) { + @if (showSelection()) {
@@ -168,7 +168,7 @@ @@ -309,7 +309,7 @@ mat-icon-button matTooltip="Open Room" (click)="openRoom(room)" - [disabled]="loading" + [disabled]="loading()" class="primary-action" id="open-room-btn-{{ room.roomId }}" > @@ -323,7 +323,7 @@ mat-icon-button matTooltip="Room Settings" (click)="editRoom(room)" - [disabled]="loading" + [disabled]="loading()" id="edit-room-btn-{{ room.roomId }}" > settings @@ -335,7 +335,7 @@ mat-icon-button [matMenuTriggerFor]="actionsMenu" matTooltip="More Actions" - [disabled]="loading" + [disabled]="loading()" id="more-actions-btn-{{ room.roomId }}" > more_vert @@ -406,13 +406,13 @@ - @if (showLoadMore) { + @if (showLoadMore()) {