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:
Yashashvi Dave 2018-08-16 00:36:11 +05:30 committed by Tim Abbott
parent 6622f995b0
commit 9e9bb18244
1 changed files with 1 additions and 1 deletions

View File

@ -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) {