fix: lint
continuous-integration/drone/pr Build is failing Details

This commit is contained in:
kolaente 2022-01-09 17:28:58 +01:00
parent d4f4ebb66b
commit 3b73925de5
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
3 changed files with 4 additions and 2 deletions

View File

@ -189,7 +189,7 @@ const props = defineProps({
showSelectedOnButton: {
type: Boolean,
default: false,
}
},
})
// FIXME: This seems to always contain the default value - that breaks the picker

View File

@ -20,7 +20,7 @@ const props = defineProps({
hasOverflow: {
type: Boolean,
default: false,
}
},
})
function hidePopup(e) {

View File

@ -96,6 +96,8 @@ export default {
pageTitle() {
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])
if (typeof predefinedRange !== 'undefined') {
title = this.$t(`input.datepickerRange.ranges.${predefinedRange[0]}`)