mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-08-09 15:50:53 +00:00
eslint: unused fmt vars
This commit is contained in:
parent
4dd4b1f0c5
commit
48b37805e3
1 changed files with 3 additions and 3 deletions
|
@ -187,7 +187,7 @@ export default class TranslationManager extends Module {
|
||||||
},
|
},
|
||||||
data: () => {
|
data: () => {
|
||||||
const out = [], now = new Date;
|
const out = [], now = new Date;
|
||||||
for (const [key, fmt] of Object.entries(this._.formats.date)) {
|
for (const [key] of Object.entries(this._.formats.date)) {
|
||||||
out.push({
|
out.push({
|
||||||
value: key, title: `${this.formatDate(now, key)} (${key})`
|
value: key, title: `${this.formatDate(now, key)} (${key})`
|
||||||
})
|
})
|
||||||
|
@ -217,7 +217,7 @@ export default class TranslationManager extends Module {
|
||||||
},
|
},
|
||||||
data: () => {
|
data: () => {
|
||||||
const out = [], now = new Date;
|
const out = [], now = new Date;
|
||||||
for (const [key,fmt] of Object.entries(this._.formats.time)) {
|
for (const [key] of Object.entries(this._.formats.time)) {
|
||||||
out.push({
|
out.push({
|
||||||
value: key, title: `${this.formatTime(now, key)} (${key})`
|
value: key, title: `${this.formatTime(now, key)} (${key})`
|
||||||
})
|
})
|
||||||
|
@ -247,7 +247,7 @@ export default class TranslationManager extends Module {
|
||||||
},
|
},
|
||||||
data: () => {
|
data: () => {
|
||||||
const out = [], now = new Date;
|
const out = [], now = new Date;
|
||||||
for (const [key,fmt] of Object.entries(this._.formats.datetime)) {
|
for (const [key] of Object.entries(this._.formats.datetime)) {
|
||||||
out.push({
|
out.push({
|
||||||
value: key, title: `${this.formatDateTime(now, key)} (${key})`
|
value: key, title: `${this.formatDateTime(now, key)} (${key})`
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue