diff options
Diffstat (limited to 'client/src/app')
-rw-r--r-- | client/src/app/+admin/users/user-edit/user-edit.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/app/+admin/users/user-edit/user-edit.ts b/client/src/app/+admin/users/user-edit/user-edit.ts index ae208e624..6e2952c44 100644 --- a/client/src/app/+admin/users/user-edit/user-edit.ts +++ b/client/src/app/+admin/users/user-edit/user-edit.ts | |||
@@ -94,11 +94,11 @@ export abstract class UserEdit extends FormReactive implements OnInit { | |||
94 | protected buildQuotaOptions () { | 94 | protected buildQuotaOptions () { |
95 | // These are used by a HTML select, so convert key into strings | 95 | // These are used by a HTML select, so convert key into strings |
96 | this.videoQuotaOptions = this.configService | 96 | this.videoQuotaOptions = this.configService |
97 | .videoQuotaOptions.map(q => ({ | 97 | .videoQuotaOptions.map(q => ({ |
98 | value: q.value?.toString(), | 98 | value: q.value?.toString(), |
99 | label: q.label, | 99 | label: q.label, |
100 | disabled: q.disabled | 100 | disabled: q.disabled |
101 | })) | 101 | })) |
102 | 102 | ||
103 | this.videoQuotaDailyOptions = this.configService | 103 | this.videoQuotaDailyOptions = this.configService |
104 | .videoQuotaDailyOptions.map(q => ({ | 104 | .videoQuotaDailyOptions.map(q => ({ |