Revert "ov-components: Update RecordingActivityComponent to avoid showing recordings when not expanded"

This reverts commit 9e9684c4db.
master
Carlos Santos 2025-08-21 14:30:44 +02:00
parent f92ee9b886
commit fc73aca4a2
1 changed files with 1 additions and 2 deletions

View File

@ -389,8 +389,7 @@ export class RecordingActivityComponent implements OnInit, OnDestroy {
if (this.showRecordingList) { if (this.showRecordingList) {
this.recordingList = recordingList; this.recordingList = recordingList;
} else { } else {
// Avoid showing recordings this.recordingList = recordingList.filter((rec) => rec.status === RecordingStatus.STARTED);
this.recordingList = [];
} }
this.recordingError = error; this.recordingError = error;
this.recordingAlive = this.recordingStatus === RecordingStatus.STARTED; this.recordingAlive = this.recordingStatus === RecordingStatus.STARTED;