chore: rename el
This commit is contained in:
parent
a22792a4b4
commit
7cd89b7bf1
1 changed files with 1 additions and 1 deletions
|
@ -155,7 +155,7 @@ function setDateRange(range: string[] | null) {
|
||||||
}
|
}
|
||||||
|
|
||||||
const customRangeActive = computed<boolean>(() => {
|
const customRangeActive = computed<boolean>(() => {
|
||||||
return !Object.values(DATE_RANGES).some(el => from.value === el[0] && to.value === el[1])
|
return !Object.values(DATE_RANGES).some(range => from.value === range[0] && to.value === range[1])
|
||||||
})
|
})
|
||||||
|
|
||||||
const buttonText = computed<string>(() => {
|
const buttonText = computed<string>(() => {
|
||||||
|
|
Loading…
Reference in a new issue