summaryrefslogtreecommitdiffstats
path: root/web/react/components/user_list_row.jsx
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2016-03-07 17:14:15 -0500
committerChristopher Speller <crspeller@gmail.com>2016-03-07 17:14:15 -0500
commite0c08d4ed609adf3e324d07810862b6853792a94 (patch)
tree0f08f0c5089c70c6f0bacbaf6b06d7edf1f25833 /web/react/components/user_list_row.jsx
parent1dde831daf29497343492b2101c52b4cc1ef5aad (diff)
parent8f917a2925d9e99c5dc7710c3df7b0d5d755a0df (diff)
downloadchat-e0c08d4ed609adf3e324d07810862b6853792a94.tar.gz
chat-e0c08d4ed609adf3e324d07810862b6853792a94.tar.bz2
chat-e0c08d4ed609adf3e324d07810862b6853792a94.zip
Merge pull request #2348 from hmhealey/member
Updated Channel Members modal UI
Diffstat (limited to 'web/react/components/user_list_row.jsx')
-rw-r--r--web/react/components/user_list_row.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/react/components/user_list_row.jsx b/web/react/components/user_list_row.jsx
index 2aeca7d47..d75078619 100644
--- a/web/react/components/user_list_row.jsx
+++ b/web/react/components/user_list_row.jsx
@@ -10,9 +10,9 @@ export default function UserListRow({user, actions}) {
let name = user.username;
if (user.nickname && nameFormat === Constants.Preferences.DISPLAY_PREFER_NICKNAME) {
- name = `${user.nickname} (${user.username})`;
+ name = `${user.nickname} (@${user.username})`;
} else if ((user.first_name || user.last_name) && (nameFormat === Constants.Preferences.DISPLAY_PREFER_NICKNAME || nameFormat === Constants.Preferences.DISPLAY_PREFER_FULL_NAME)) {
- name = `${Utils.getFullName(user)} (${user.username})`;
+ name = `${Utils.getFullName(user)} (@${user.username})`;
}
const buttons = actions.map((Action, index) => {