aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+stats
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-05-10 09:23:58 +0200
committerChocobozzz <me@florianbigard.com>2022-05-10 09:23:58 +0200
commitb01bdcfcaedd193294235806edb9cded8a583cf9 (patch)
treed45044088bdd4c685f2a7ed296099338eb144109 /client/src/app/+stats
parentca3d5912e16b39697bdeeda35d10b44ed8f711aa (diff)
downloadPeerTube-b01bdcfcaedd193294235806edb9cded8a583cf9.tar.gz
PeerTube-b01bdcfcaedd193294235806edb9cded8a583cf9.tar.zst
PeerTube-b01bdcfcaedd193294235806edb9cded8a583cf9.zip
Add min range to stats graphs
Diffstat (limited to 'client/src/app/+stats')
-rw-r--r--client/src/app/+stats/video/video-stats.component.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/client/src/app/+stats/video/video-stats.component.ts b/client/src/app/+stats/video/video-stats.component.ts
index b6b71d463..51738f8dc 100644
--- a/client/src/app/+stats/video/video-stats.component.ts
+++ b/client/src/app/+stats/video/video-stats.component.ts
@@ -449,6 +449,11 @@ export class VideoStatsComponent implements OnInit {
449 this.peertubeRouter.silentNavigate([], { startDate, endDate }) 449 this.peertubeRouter.silentNavigate([], { startDate, endDate })
450 this.addAndSelectCustomDateFilter() 450 this.addAndSelectCustomDateFilter()
451 } 451 }
452 },
453 limits: {
454 x: {
455 minRange: 2
456 }
452 } 457 }
453 } 458 }
454 }, 459 },