diff --git a/htdocs/DateRangePicker.vue b/htdocs/DateRangePicker.vue index 525779c..5a3763b 100644 --- a/htdocs/DateRangePicker.vue +++ b/htdocs/DateRangePicker.vue @@ -156,7 +156,7 @@ timeshift, timeshift_month }, mounted() { - this.$emit('update:date_end', this.x_date_end = datecalc(this.x_date, this.x_range, this.direction)); + if(this.x_range != 'Range') this.$emit('update:date_end', this.x_date_end = datecalc(this.x_date, this.x_range, this.direction)); } };