diff options
author | Chocobozzz <me@florianbigard.com> | 2021-12-09 13:38:53 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-12-09 13:38:53 +0100 |
commit | 4b57ebdfe69e862373908590b0cf781ab0d71a02 (patch) | |
tree | 38d766d98ad5b18515ea775d88490efdc1ea566d /client/src/app/shared/shared-user-settings | |
parent | 7e44bd4a6f39373ef1751d4d19cdcf7de65bdcf9 (diff) | |
download | PeerTube-4b57ebdfe69e862373908590b0cf781ab0d71a02.tar.gz PeerTube-4b57ebdfe69e862373908590b0cf781ab0d71a02.tar.zst PeerTube-4b57ebdfe69e862373908590b0cf781ab0d71a02.zip |
Fix theme update when logged in
Diffstat (limited to 'client/src/app/shared/shared-user-settings')
-rw-r--r-- | client/src/app/shared/shared-user-settings/user-interface-settings.component.ts | 2 |
1 files changed, 1 insertions, 1 deletions
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 | |||
48 | }) | 48 | }) |
49 | 49 | ||
50 | if (this.reactiveUpdate) { | 50 | if (this.reactiveUpdate) { |
51 | this.formValuesWatcher = this.form.valueChanges.subscribe(val => this.updateInterfaceSettings()) | 51 | this.formValuesWatcher = this.form.valueChanges.subscribe(() => this.updateInterfaceSettings()) |
52 | } | 52 | } |
53 | }) | 53 | }) |
54 | } | 54 | } |