aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2017-03-10 10:42:02 +0100
committerChocobozzz <florian.bigard@gmail.com>2017-03-10 10:42:02 +0100
commita2457e9de4a598ea34629bc40eb882ce03ec0ede (patch)
tree94f2c7521b0cc20a524a2ee7e951cbc8bc2967a1
parent758b996dc6effcab6031b32c0bd0b81f234c1a63 (diff)
downloadPeerTube-a2457e9de4a598ea34629bc40eb882ce03ec0ede.tar.gz
PeerTube-a2457e9de4a598ea34629bc40eb882ce03ec0ede.tar.zst
PeerTube-a2457e9de4a598ea34629bc40eb882ce03ec0ede.zip
Client: fix prod compilation
-rw-r--r--client/src/app/videos/video-list/video-sort.component.ts2
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',