fix: lint
This commit is contained in:
parent
7aa2cfc8d4
commit
7135288800
3 changed files with 4 additions and 2 deletions
|
@ -191,7 +191,7 @@ const props = defineProps({
|
||||||
showSelectedOnButton: {
|
showSelectedOnButton: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
default: false,
|
default: false,
|
||||||
}
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
// FIXME: This seems to always contain the default value - that breaks the picker
|
// FIXME: This seems to always contain the default value - that breaks the picker
|
||||||
|
|
|
@ -20,7 +20,7 @@ const props = defineProps({
|
||||||
hasOverflow: {
|
hasOverflow: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
default: false,
|
default: false,
|
||||||
}
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
function hidePopup(e) {
|
function hidePopup(e) {
|
||||||
|
|
|
@ -98,6 +98,8 @@ export default {
|
||||||
pageTitle() {
|
pageTitle() {
|
||||||
let title = ''
|
let title = ''
|
||||||
|
|
||||||
|
// We need to define "key" because it is the first parameter in the array and we need the second
|
||||||
|
// eslint-disable-next-line no-unused-vars
|
||||||
const predefinedRange = Object.entries(dateRanges).find(([key, value]) => this.dateFrom === value[0] && this.dateTo === value[1])
|
const predefinedRange = Object.entries(dateRanges).find(([key, value]) => this.dateFrom === value[0] && this.dateTo === value[1])
|
||||||
if (typeof predefinedRange !== 'undefined') {
|
if (typeof predefinedRange !== 'undefined') {
|
||||||
title = this.$t(`input.datepickerRange.ranges.${predefinedRange[0]}`)
|
title = this.$t(`input.datepickerRange.ranges.${predefinedRange[0]}`)
|
||||||
|
|
Loading…
Reference in a new issue