From a2457e9de4a598ea34629bc40eb882ce03ec0ede Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Fri, 10 Mar 2017 10:42:02 +0100 Subject: [PATCH] Client: fix prod compilation --- client/src/app/videos/video-list/video-sort.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/app/videos/video-list/video-sort.component.ts b/client/src/app/videos/video-list/video-sort.component.ts index cde307f2f..20979a395 100644 --- a/client/src/app/videos/video-list/video-sort.component.ts +++ b/client/src/app/videos/video-list/video-sort.component.ts @@ -12,7 +12,7 @@ export class VideoSortComponent { @Input() currentSort: SortField; - sortChoices: { [ id: SortField ]: string } = { + sortChoices: { [ P in SortField ]: string } = { 'name': 'Name - Asc', '-name': 'Name - Desc', 'duration': 'Duration - Asc', -- 2.41.0