diff --git a/lib/js/components/DatePickers/DatePicker/DatePicker.vue b/lib/js/components/DatePickers/DatePicker/DatePicker.vue index 619f6e68f..30a4f7225 100644 --- a/lib/js/components/DatePickers/DatePicker/DatePicker.vue +++ b/lib/js/components/DatePickers/DatePicker/DatePicker.vue @@ -260,13 +260,13 @@ export default defineComponent({ }, computed: { eyebrowText() { - if (!this.date || this.state === DATE_PICKER_STATES.LOADING) { + if (!this.date) { return ''; } return capitalizeFirstLetter(localWeekdayName(this.date)); }, text() { - if (this.state === DATE_PICKER_STATES.LOADING || !this.date) { + if (!this.date) { return this.placeholder; } return localFullDateWithShortMonthName(this.date);