Remove unused sort param
This commit is contained in:
parent
8e286cdca4
commit
0df302ca8d
|
@ -93,7 +93,7 @@ export class MyVideosComponent implements OnInit, DisableForReuseHook {
|
||||||
this.videosSelection.enabledForReuse()
|
this.videosSelection.enabledForReuse()
|
||||||
}
|
}
|
||||||
|
|
||||||
getVideosObservable (page: number, sort: VideoSortField) {
|
getVideosObservable (page: number) {
|
||||||
const newPagination = immutableAssign(this.pagination, { currentPage: page })
|
const newPagination = immutableAssign(this.pagination, { currentPage: page })
|
||||||
|
|
||||||
return this.videoService.getMyVideos(newPagination, this.sort, this.videosSearch)
|
return this.videoService.getMyVideos(newPagination, this.sort, this.videosSearch)
|
||||||
|
|
Loading…
Reference in New Issue