diff options
Diffstat (limited to 'client')
-rw-r--r-- | client/src/app/+stats/video/video-stats.component.scss | 5 | ||||
-rw-r--r-- | client/src/app/+stats/video/video-stats.component.ts | 6 |
2 files changed, 10 insertions, 1 deletions
diff --git a/client/src/app/+stats/video/video-stats.component.scss b/client/src/app/+stats/video/video-stats.component.scss index e4c2d899f..5733b3286 100644 --- a/client/src/app/+stats/video/video-stats.component.scss +++ b/client/src/app/+stats/video/video-stats.component.scss | |||
@@ -23,6 +23,11 @@ | |||
23 | 23 | ||
24 | .cards { | 24 | .cards { |
25 | display: flex; | 25 | display: flex; |
26 | flex-wrap: wrap; | ||
27 | } | ||
28 | |||
29 | .date-filter-wrapper { | ||
30 | margin-bottom: 10px; | ||
26 | } | 31 | } |
27 | } | 32 | } |
28 | 33 | ||
diff --git a/client/src/app/+stats/video/video-stats.component.ts b/client/src/app/+stats/video/video-stats.component.ts index 51738f8dc..4ce14902d 100644 --- a/client/src/app/+stats/video/video-stats.component.ts +++ b/client/src/app/+stats/video/video-stats.component.ts | |||
@@ -223,7 +223,7 @@ export class VideoStatsComponent implements OnInit { | |||
223 | private buildLiveFilter (session: LiveVideoSession) { | 223 | private buildLiveFilter (session: LiveVideoSession) { |
224 | return { | 224 | return { |
225 | id: session.startDate + '|' + session.endDate, | 225 | id: session.startDate + '|' + session.endDate, |
226 | label: $localize`Of live of ${new Date(session.startDate).toLocaleString()}` | 226 | label: $localize`Live as of ${new Date(session.startDate).toLocaleString()}` |
227 | } | 227 | } |
228 | } | 228 | } |
229 | 229 | ||
@@ -276,6 +276,10 @@ export class VideoStatsComponent implements OnInit { | |||
276 | moreInfo: overallStats.viewersPeak !== 0 | 276 | moreInfo: overallStats.viewersPeak !== 0 |
277 | ? $localize`at ${new Date(overallStats.viewersPeakDate).toLocaleString()}` | 277 | ? $localize`at ${new Date(overallStats.viewersPeakDate).toLocaleString()}` |
278 | : undefined | 278 | : undefined |
279 | }, | ||
280 | { | ||
281 | label: $localize`Unique viewers`, | ||
282 | value: this.numberFormatter.transform(overallStats.totalViewers) | ||
279 | } | 283 | } |
280 | ] | 284 | ] |
281 | 285 | ||