diff --git a/frontend/src/components/Controls/DatePicker.vue b/frontend/src/components/Controls/DatePicker.vue index af236935..79d799a9 100644 --- a/frontend/src/components/Controls/DatePicker.vue +++ b/frontend/src/components/Controls/DatePicker.vue @@ -167,7 +167,7 @@ export default { formatMonth() { let date = this.getDate(this.currentYear, this.currentMonth - 1, 1) return date.toLocaleString('en-US', { - month: 'short', + month: 'long', year: 'numeric', }) }, diff --git a/frontend/src/components/Controls/DateRangePicker.vue b/frontend/src/components/Controls/DateRangePicker.vue index 64a00fd6..3f147c51 100644 --- a/frontend/src/components/Controls/DateRangePicker.vue +++ b/frontend/src/components/Controls/DateRangePicker.vue @@ -18,81 +18,77 @@ @@ -166,7 +162,7 @@ export default { formatMonth() { let date = this.getDate(this.currentYear, this.currentMonth - 1, 1) return date.toLocaleString('en-US', { - month: 'short', + month: 'long', year: 'numeric', }) },