protected buildQuotaOptions () {
// These are used by a HTML select, so convert key into strings
this.videoQuotaOptions = this.configService
- .videoQuotaOptions.map(q => ({ value: q.value?.toString(), label: q.label, disabled: q.disabled }))
+ .videoQuotaOptions.map(q => ({
+ value: q.value?.toString(),
+ label: q.label,
+ disabled: q.disabled
+ }))
this.videoQuotaDailyOptions = this.configService
- .videoQuotaDailyOptions.map(q => ({ value: q.value?.toString(), label: q.label, disabled: q.disabled }))
+ .videoQuotaDailyOptions.map(q => ({
+ value: q.value?.toString(),
+ label: q.label,
+ disabled: q.disabled
+ }))
console.log(
this.videoQuotaOptions,
transform (arg: number | Date | string) {
const argDate = new Date(arg)
const seconds = Math.floor((Date.now() - argDate.getTime()) / 1000)
-
+
let interval = Math.floor(seconds / 31536000)
if (interval > 1) return this.i18n('{{interval}} years ago', { interval })
if (interval === 1) return this.i18n('{{interval}} year ago', { interval })