mirror of https://github.com/Chocobozzz/PeerTube
Fix lint
parent
f940e81469
commit
8e4aff44b0
|
@ -94,11 +94,11 @@ export abstract class UserEdit extends FormReactive implements OnInit {
|
||||||
protected buildQuotaOptions () {
|
protected buildQuotaOptions () {
|
||||||
// These are used by a HTML select, so convert key into strings
|
// These are used by a HTML select, so convert key into strings
|
||||||
this.videoQuotaOptions = this.configService
|
this.videoQuotaOptions = this.configService
|
||||||
.videoQuotaOptions.map(q => ({
|
.videoQuotaOptions.map(q => ({
|
||||||
value: q.value?.toString(),
|
value: q.value?.toString(),
|
||||||
label: q.label,
|
label: q.label,
|
||||||
disabled: q.disabled
|
disabled: q.disabled
|
||||||
}))
|
}))
|
||||||
|
|
||||||
this.videoQuotaDailyOptions = this.configService
|
this.videoQuotaDailyOptions = this.configService
|
||||||
.videoQuotaDailyOptions.map(q => ({
|
.videoQuotaDailyOptions.map(q => ({
|
||||||
|
|
Loading…
Reference in New Issue