From fce026766baabe98c8ba0efc540e97174aaf2224 Mon Sep 17 00:00:00 2001 From: Carlos Santos <4a.santos@gmail.com> Date: Tue, 29 Jul 2025 19:10:35 +0200 Subject: [PATCH] ov-components: Enhance recording activity component: update view recordings button visibility based on recording status and improve toolbar button text for active recording state --- .../recording-activity/recording-activity.component.html | 2 +- .../recording-activity/recording-activity.component.scss | 1 + .../src/lib/components/toolbar/toolbar.component.html | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/openvidu-components-angular/projects/openvidu-components-angular/src/lib/components/panel/activities-panel/recording-activity/recording-activity.component.html b/openvidu-components-angular/projects/openvidu-components-angular/src/lib/components/panel/activities-panel/recording-activity/recording-activity.component.html index e0908aca..22a82ae2 100644 --- a/openvidu-components-angular/projects/openvidu-components-angular/src/lib/components/panel/activities-panel/recording-activity/recording-activity.component.html +++ b/openvidu-components-angular/projects/openvidu-components-angular/src/lib/components/panel/activities-panel/recording-activity/recording-activity.component.html @@ -152,7 +152,7 @@ } - @if (showViewRecordingsButton) { + @if (showViewRecordingsButton && recordingStatus !== recStatusEnum.FAILED) {