NoImplicitAny flag true (#1157)
[oweals/peertube.git] / client / src / app / +admin / users / user-edit / user-edit.ts
index 99ce5804b75ac3eb98947475404898387476c2d2..a4d696e6997054deb7e398850527b0b998a7cf41 100644 (file)
@@ -7,7 +7,7 @@ export abstract class UserEdit extends FormReactive {
 
   videoQuotaOptions: { value: string, label: string }[] = []
   videoQuotaDailyOptions: { value: string, label: string }[] = []
-  roles = Object.keys(USER_ROLE_LABELS).map(key => ({ value: key.toString(), label: USER_ROLE_LABELS[key] }))
+  roles = Object.keys(USER_ROLE_LABELS).map((key: any) => ({ value: key.toString(), label: USER_ROLE_LABELS[key] }))
 
   protected abstract serverService: ServerService
   protected abstract configService: ConfigService