diff --git a/zephyr/static/js/composebox_typeahead.js b/zephyr/static/js/composebox_typeahead.js index b805a86d6b..385f86b6f7 100644 --- a/zephyr/static/js/composebox_typeahead.js +++ b/zephyr/static/js/composebox_typeahead.js @@ -202,7 +202,7 @@ exports.initialize = function () { }, sorter: typeahead_helper.sort_textbox_typeahead, updater: function (item) { - return this.query.replace(/@\S+$/, "") + "@" + typeahead_helper.private_message_mapped[item].email.split("@")[0]; + return this.query.replace(/@\S+$/, "") + "@**" + typeahead_helper.private_message_mapped[item].full_name + "**"; }, stopAdvance: true // Do not advance to the next field on a tab or enter });