diff options
author | Chocobozzz <me@florianbigard.com> | 2021-12-09 13:41:24 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-12-09 13:41:24 +0100 |
commit | 0882c8e6509b2a4ea48f6c48ecb2aa4aa371500a (patch) | |
tree | 6f787473199e6d7e161137c5ab66a169f461499f /client/src/app/+home | |
parent | 6ba93fa6392429f22d338f3cdce50707995ced3b (diff) | |
parent | 2e694a3b9850fa8f426aa4bf31fc8a596ae2d310 (diff) | |
download | PeerTube-0882c8e6509b2a4ea48f6c48ecb2aa4aa371500a.tar.gz PeerTube-0882c8e6509b2a4ea48f6c48ecb2aa4aa371500a.tar.zst PeerTube-0882c8e6509b2a4ea48f6c48ecb2aa4aa371500a.zip |
Merge branch 'release/4.0.0' into develop
Diffstat (limited to 'client/src/app/+home')
-rw-r--r-- | client/src/app/+home/home-routing.module.ts | 7 |
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' | |||
5 | const homeRoutes: Routes = [ | 5 | const 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 | ||