From: Chocobozzz Date: Thu, 9 Dec 2021 12:41:16 +0000 (+0100) Subject: Fix homepage title X-Git-Tag: v4.0.0~3 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=2e694a3b9850fa8f426aa4bf31fc8a596ae2d310;p=github%2FChocobozzz%2FPeerTube.git Fix homepage title --- 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' const homeRoutes: Routes = [ { path: '', - component: HomeComponent + component: HomeComponent, + data: { + meta: { + title: $localize`Homepage` + } + } } ]