]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Fix homepage title
authorChocobozzz <me@florianbigard.com>
Thu, 9 Dec 2021 12:41:16 +0000 (13:41 +0100)
committerChocobozzz <me@florianbigard.com>
Thu, 9 Dec 2021 12:41:16 +0000 (13:41 +0100)
client/src/app/+home/home-routing.module.ts

index a2085f1915bbfc5fba56c5bd6bbc104a13b02ccc..bedf26be0f0b6412ab95e768a065a07a1eff2a78 100644 (file)
@@ -5,7 +5,12 @@ import { HomeComponent } from './home.component'
 const homeRoutes: Routes = [
   {
     path: '',
-    component: HomeComponent
+    component: HomeComponent,
+    data: {
+      meta: {
+        title: $localize`Homepage`
+      }
+    }
   }
 ]