diff options
Diffstat (limited to 'client/src/app')
-rw-r--r-- | client/src/app/shared/video/video-miniature.component.html | 2 | ||||
-rw-r--r-- | client/src/app/shared/video/video.model.ts | 2 | ||||
-rw-r--r-- | client/src/app/videos/+video-watch/video-watch.component.html | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/client/src/app/shared/video/video-miniature.component.html b/client/src/app/shared/video/video-miniature.component.html index 7ac017235..f28e9b8d9 100644 --- a/client/src/app/shared/video/video-miniature.component.html +++ b/client/src/app/shared/video/video-miniature.component.html | |||
@@ -11,7 +11,7 @@ | |||
11 | </a> | 11 | </a> |
12 | </span> | 12 | </span> |
13 | 13 | ||
14 | <span class="video-miniature-created-at-views">{{ video.createdAt | myFromNow }} - {{ video.views | myNumberFormatter }} views</span> | 14 | <span class="video-miniature-created-at-views">{{ video.publishedAt | myFromNow }} - {{ video.views | myNumberFormatter }} views</span> |
15 | <span class="video-miniature-account">{{ video.by }}</span> | 15 | <span class="video-miniature-account">{{ video.by }}</span> |
16 | </div> | 16 | </div> |
17 | </div> | 17 | </div> |
diff --git a/client/src/app/shared/video/video.model.ts b/client/src/app/shared/video/video.model.ts index 7b68933a1..0c02cbcb9 100644 --- a/client/src/app/shared/video/video.model.ts +++ b/client/src/app/shared/video/video.model.ts | |||
@@ -9,6 +9,7 @@ export class Video implements VideoServerModel { | |||
9 | by: string | 9 | by: string |
10 | createdAt: Date | 10 | createdAt: Date |
11 | updatedAt: Date | 11 | updatedAt: Date |
12 | publishedAt: Date | ||
12 | category: VideoConstant<number> | 13 | category: VideoConstant<number> |
13 | licence: VideoConstant<number> | 14 | licence: VideoConstant<number> |
14 | language: VideoConstant<number> | 15 | language: VideoConstant<number> |
@@ -56,6 +57,7 @@ export class Video implements VideoServerModel { | |||
56 | const absoluteAPIUrl = getAbsoluteAPIUrl() | 57 | const absoluteAPIUrl = getAbsoluteAPIUrl() |
57 | 58 | ||
58 | this.createdAt = new Date(hash.createdAt.toString()) | 59 | this.createdAt = new Date(hash.createdAt.toString()) |
60 | this.publishedAt = new Date(hash.publishedAt.toString()) | ||
59 | this.category = hash.category | 61 | this.category = hash.category |
60 | this.licence = hash.licence | 62 | this.licence = hash.licence |
61 | this.language = hash.language | 63 | this.language = hash.language |
diff --git a/client/src/app/videos/+video-watch/video-watch.component.html b/client/src/app/videos/+video-watch/video-watch.component.html index 6c7fc08e1..ec5bd30dc 100644 --- a/client/src/app/videos/+video-watch/video-watch.component.html +++ b/client/src/app/videos/+video-watch/video-watch.component.html | |||
@@ -14,7 +14,7 @@ | |||
14 | <div class="video-info-name">{{ video.name }}</div> | 14 | <div class="video-info-name">{{ video.name }}</div> |
15 | 15 | ||
16 | <div class="video-info-date-views"> | 16 | <div class="video-info-date-views"> |
17 | {{ video.createdAt | myFromNow }} - {{ video.views | myNumberFormatter }} views | 17 | {{ video.publishedAt | myFromNow }} - {{ video.views | myNumberFormatter }} views |
18 | </div> | 18 | </div> |
19 | 19 | ||
20 | <div class="video-info-channel"> | 20 | <div class="video-info-channel"> |