From 136cce4d6744bef7fd316b929157c1e4e3984fe3 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Tue, 15 May 2018 08:47:47 +0200 Subject: Use publishedAt by default in videos sort --- client/src/app/videos/video-list/video-local.component.ts | 2 +- client/src/app/videos/video-list/video-recently-added.component.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'client/src/app/videos') diff --git a/client/src/app/videos/video-list/video-local.component.ts b/client/src/app/videos/video-list/video-local.component.ts index fd67be67b..abab7504f 100644 --- a/client/src/app/videos/video-list/video-local.component.ts +++ b/client/src/app/videos/video-list/video-local.component.ts @@ -17,7 +17,7 @@ import { VideoFilter } from '../../../../../shared/models/videos/video-query.typ export class VideoLocalComponent extends AbstractVideoList implements OnInit, OnDestroy { titlePage = 'Local videos' currentRoute = '/videos/local' - sort = '-createdAt' as VideoSortField + sort = '-publishedAt' as VideoSortField filter: VideoFilter = 'local' constructor (protected router: Router, diff --git a/client/src/app/videos/video-list/video-recently-added.component.ts b/client/src/app/videos/video-list/video-recently-added.component.ts index 535b6e618..d064d9628 100644 --- a/client/src/app/videos/video-list/video-recently-added.component.ts +++ b/client/src/app/videos/video-list/video-recently-added.component.ts @@ -16,7 +16,7 @@ import { VideoService } from '../../shared/video/video.service' export class VideoRecentlyAddedComponent extends AbstractVideoList implements OnInit, OnDestroy { titlePage = 'Recently added' currentRoute = '/videos/recently-added' - sort: VideoSortField = '-createdAt' + sort: VideoSortField = '-publishedAt' constructor (protected router: Router, protected route: ActivatedRoute, -- cgit v1.2.3