diff options
Diffstat (limited to 'client')
-rw-r--r-- | client/src/app/videos/video-list/video-sort.component.ts | 2 |
1 files changed, 1 insertions, 1 deletions
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 { | |||
12 | 12 | ||
13 | @Input() currentSort: SortField; | 13 | @Input() currentSort: SortField; |
14 | 14 | ||
15 | sortChoices: { [ id: SortField ]: string } = { | 15 | sortChoices: { [ P in SortField ]: string } = { |
16 | 'name': 'Name - Asc', | 16 | 'name': 'Name - Asc', |
17 | '-name': 'Name - Desc', | 17 | '-name': 'Name - Desc', |
18 | 'duration': 'Duration - Asc', | 18 | 'duration': 'Duration - Asc', |