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
1 changed files with 1 additions and 1 deletions

View File

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