diff options
Diffstat (limited to 'client/src/app/account')
-rw-r--r-- | client/src/app/account/account-details/account-details.component.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/src/app/account/account-details/account-details.component.ts b/client/src/app/account/account-details/account-details.component.ts index d7531cb55..547f045c4 100644 --- a/client/src/app/account/account-details/account-details.component.ts +++ b/client/src/app/account/account-details/account-details.component.ts | |||
@@ -11,6 +11,7 @@ import { | |||
11 | UserService, | 11 | UserService, |
12 | USER_PASSWORD | 12 | USER_PASSWORD |
13 | } from '../../shared' | 13 | } from '../../shared' |
14 | import { UserUpdate } from '../../../../../shared' | ||
14 | 15 | ||
15 | @Component({ | 16 | @Component({ |
16 | selector: 'my-account-details', | 17 | selector: 'my-account-details', |
@@ -50,7 +51,7 @@ export class AccountDetailsComponent extends FormReactive implements OnInit { | |||
50 | 51 | ||
51 | updateDetails () { | 52 | updateDetails () { |
52 | const displayNSFW = this.form.value['displayNSFW'] | 53 | const displayNSFW = this.form.value['displayNSFW'] |
53 | const details = { | 54 | const details: UserUpdate = { |
54 | displayNSFW | 55 | displayNSFW |
55 | } | 56 | } |
56 | 57 | ||