mirror of https://github.com/zulip/zulip.git
user profile popover: Use long local date format in custom-date-field.
Use long local date format `MMMM DD, YYYY` instead of short `MM/DD/YY` in custom profile date field.
This commit is contained in:
parent
6622f995b0
commit
9e9bb18244
|
@ -181,7 +181,7 @@ function show_user_profile(element, user) {
|
|||
popovers.hide_all();
|
||||
|
||||
var profile_data = {};
|
||||
var localFormat = moment.localeData().longDateFormat('L');
|
||||
var localFormat = moment.localeData().longDateFormat('LL');
|
||||
var field_types = page_params.custom_profile_field_types;
|
||||
|
||||
page_params.custom_profile_fields.forEach(function (field) {
|
||||
|
|
Loading…
Reference in New Issue