From: Chocobozzz Date: Thu, 9 Dec 2021 12:41:24 +0000 (+0100) Subject: Merge branch 'release/4.0.0' into develop X-Git-Tag: v4.1.0-rc.1~389 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=0882c8e6509b2a4ea48f6c48ecb2aa4aa371500a;hp=6ba93fa6392429f22d338f3cdce50707995ced3b;p=github%2FChocobozzz%2FPeerTube.git Merge branch 'release/4.0.0' into develop --- 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` + } + } } ] diff --git a/client/src/app/+my-account/my-account-settings/my-account-settings.component.html b/client/src/app/+my-account/my-account-settings/my-account-settings.component.html index 48d06280b..8ca197fd4 100644 --- a/client/src/app/+my-account/my-account-settings/my-account-settings.component.html +++ b/client/src/app/+my-account/my-account-settings/my-account-settings.component.html @@ -20,6 +20,16 @@ +
+
+ +
+ +
+ +
+
+
@@ -42,16 +52,6 @@
-
-
- -
- -
- -
-
-
diff --git a/client/src/app/core/theme/theme.service.ts b/client/src/app/core/theme/theme.service.ts index c9e6fa700..ac3468941 100644 --- a/client/src/app/core/theme/theme.service.ts +++ b/client/src/app/core/theme/theme.service.ts @@ -141,7 +141,6 @@ export class ThemeService { } this.auth.userInformationLoaded - .pipe(first()) .subscribe(() => this.updateCurrentTheme()) } diff --git a/client/src/app/shared/shared-user-settings/user-interface-settings.component.ts b/client/src/app/shared/shared-user-settings/user-interface-settings.component.ts index bd1cb0353..d04a2c348 100644 --- a/client/src/app/shared/shared-user-settings/user-interface-settings.component.ts +++ b/client/src/app/shared/shared-user-settings/user-interface-settings.component.ts @@ -48,7 +48,7 @@ export class UserInterfaceSettingsComponent extends FormReactive implements OnIn }) if (this.reactiveUpdate) { - this.formValuesWatcher = this.form.valueChanges.subscribe(val => this.updateInterfaceSettings()) + this.formValuesWatcher = this.form.valueChanges.subscribe(() => this.updateInterfaceSettings()) } }) }