mirror of
https://github.com/discourse/discourse.git
synced 2025-06-06 03:06:53 +08:00
UX: Use shorter weekday labels in date picker
This commit is contained in:
@ -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)
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user