openvidu-components: Returned same url in recording pipe

pull/750/head
Carlos Santos 2022-10-05 13:58:17 +02:00
parent 5f0fe95d69
commit e2d8a510e6
3 changed files with 3 additions and 1 deletions

View File

@ -29,6 +29,7 @@
#sort-menu-btn { #sort-menu-btn {
margin-left: 5px; margin-left: 5px;
background-color: var(--ov-panel-background); background-color: var(--ov-panel-background);
color: var(--ov-panel-text-color);
} }
.search-bar { .search-bar {

View File

@ -21,6 +21,7 @@ export class AdminDashboardComponent implements OnInit, OnDestroy {
/** /**
* Provides event notifications that fire when refresh recordings button has been clicked. * Provides event notifications that fire when refresh recordings button has been clicked.
* The recordings should be updated using the REST API.
*/ */
@Output() onRefreshRecordingsClicked: EventEmitter<void> = new EventEmitter<void>(); @Output() onRefreshRecordingsClicked: EventEmitter<void> = new EventEmitter<void>();

View File

@ -65,6 +65,6 @@ export class ThumbnailFromUrlPipe implements PipeTransform {
thumbnailUrl = `recordings/${thumbnailUrl?.split('.')[0]}/${thumbnailUrl}`; thumbnailUrl = `recordings/${thumbnailUrl?.split('.')[0]}/${thumbnailUrl}`;
return thumbnailUrl; return thumbnailUrl;
} }
return ''; return url;
} }
} }