mirror of https://github.com/OpenVidu/openvidu.git
openvidu-components: Returned same url in recording pipe
parent
5f0fe95d69
commit
e2d8a510e6
|
@ -29,6 +29,7 @@
|
|||
#sort-menu-btn {
|
||||
margin-left: 5px;
|
||||
background-color: var(--ov-panel-background);
|
||||
color: var(--ov-panel-text-color);
|
||||
}
|
||||
|
||||
.search-bar {
|
||||
|
|
|
@ -21,6 +21,7 @@ export class AdminDashboardComponent implements OnInit, OnDestroy {
|
|||
|
||||
/**
|
||||
* 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>();
|
||||
|
||||
|
|
|
@ -65,6 +65,6 @@ export class ThumbnailFromUrlPipe implements PipeTransform {
|
|||
thumbnailUrl = `recordings/${thumbnailUrl?.split('.')[0]}/${thumbnailUrl}`;
|
||||
return thumbnailUrl;
|
||||
}
|
||||
return '';
|
||||
return url;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue