aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+about/about-instance/instance-statistics.component.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2023-02-15 15:53:40 +0100
committerChocobozzz <me@florianbigard.com>2023-02-15 16:08:32 +0100
commitf6cf8e8d8e9bc61dac266886c873613bb715936d (patch)
treee5fb73f19ff933f8d816faf0755a8085b085605c /client/src/app/+about/about-instance/instance-statistics.component.ts
parent343d1395df2e07ea9eb3540724c9fd689e617cb8 (diff)
downloadPeerTube-f6cf8e8d8e9bc61dac266886c873613bb715936d.tar.gz
PeerTube-f6cf8e8d8e9bc61dac266886c873613bb715936d.tar.zst
PeerTube-f6cf8e8d8e9bc61dac266886c873613bb715936d.zip
Fix stats anchor link
Diffstat (limited to 'client/src/app/+about/about-instance/instance-statistics.component.ts')
-rw-r--r--client/src/app/+about/about-instance/instance-statistics.component.ts11
1 files changed, 11 insertions, 0 deletions
diff --git a/client/src/app/+about/about-instance/instance-statistics.component.ts b/client/src/app/+about/about-instance/instance-statistics.component.ts
new file mode 100644
index 000000000..ac6984438
--- /dev/null
+++ b/client/src/app/+about/about-instance/instance-statistics.component.ts
@@ -0,0 +1,11 @@
1import { Component, Input } from '@angular/core'
2import { ServerStats } from '@shared/models/server'
3
4@Component({
5 selector: 'my-instance-statistics',
6 templateUrl: './instance-statistics.component.html',
7 styleUrls: [ './instance-statistics.component.scss' ]
8})
9export class InstanceStatisticsComponent {
10 @Input() serverStats: ServerStats
11}