ov-components: Update RecordingActivityComponent to avoid showing recordings when not expanded
This commit is contained in:
parent
efada4c166
commit
9e9684c4db
@ -389,7 +389,8 @@ export class RecordingActivityComponent implements OnInit, OnDestroy {
|
||||
if (this.showRecordingList) {
|
||||
this.recordingList = recordingList;
|
||||
} else {
|
||||
this.recordingList = recordingList.filter((rec) => rec.status === RecordingStatus.STARTED);
|
||||
// Avoid showing recordings
|
||||
this.recordingList = [];
|
||||
}
|
||||
this.recordingError = error;
|
||||
this.recordingAlive = this.recordingStatus === RecordingStatus.STARTED;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user