aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-12-09 13:41:16 +0100
committerChocobozzz <me@florianbigard.com>2021-12-09 13:41:16 +0100
commit2e694a3b9850fa8f426aa4bf31fc8a596ae2d310 (patch)
tree8def6193218850a95847090dad75ff22c39fc44b
parent4b57ebdfe69e862373908590b0cf781ab0d71a02 (diff)
downloadPeerTube-2e694a3b9850fa8f426aa4bf31fc8a596ae2d310.tar.gz
PeerTube-2e694a3b9850fa8f426aa4bf31fc8a596ae2d310.tar.zst
PeerTube-2e694a3b9850fa8f426aa4bf31fc8a596ae2d310.zip
Fix homepage title
-rw-r--r--client/src/app/+home/home-routing.module.ts7
1 files changed, 6 insertions, 1 deletions
diff --git a/client/src/app/+home/home-routing.module.ts b/client/src/app/+home/home-routing.module.ts
index a2085f191..bedf26be0 100644
--- a/client/src/app/+home/home-routing.module.ts
+++ b/client/src/app/+home/home-routing.module.ts
@@ -5,7 +5,12 @@ import { HomeComponent } from './home.component'
5const homeRoutes: Routes = [ 5const homeRoutes: Routes = [
6 { 6 {
7 path: '', 7 path: '',
8 component: HomeComponent 8 component: HomeComponent,
9 data: {
10 meta: {
11 title: $localize`Homepage`
12 }
13 }
9 } 14 }
10] 15]
11 16