UX: Use shorter weekday labels in date picker

This commit is contained in:
Gerhard Schlager 2019-08-05 14:12:13 +02:00
parent 9bb15efca7
commit 2c08d43539

View File

@ -41,7 +41,7 @@ export default Ember.Component.extend({
nextMonth: I18n.t("dates.next_month"), nextMonth: I18n.t("dates.next_month"),
months: moment.months(), months: moment.months(),
weekdays: moment.weekdays(), weekdays: moment.weekdays(),
weekdaysShort: moment.weekdaysShort() weekdaysShort: moment.weekdaysMin()
}, },
onSelect: date => this._handleSelection(date) onSelect: date => this._handleSelection(date)
}; };