summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2016-02-03 11:26:06 -0800
committer=Corey Hulen <corey@hulen.com>2016-02-03 11:26:06 -0800
commit143186b9d918728aec8e859dc1559d680bb12def (patch)
tree3921044b21a63a85e285a4e00fe41b7c43274590
parent9bba6c79882d1f5d14b98052caf59a11fc2388d5 (diff)
downloadchat-143186b9d918728aec8e859dc1559d680bb12def.tar.gz
chat-143186b9d918728aec8e859dc1559d680bb12def.tar.bz2
chat-143186b9d918728aec8e859dc1559d680bb12def.zip
Fixing loc error
-rw-r--r--web/react/components/user_settings/user_settings_display.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/components/user_settings/user_settings_display.jsx b/web/react/components/user_settings/user_settings_display.jsx
index 3b2a2065b..776bde442 100644
--- a/web/react/components/user_settings/user_settings_display.jsx
+++ b/web/react/components/user_settings/user_settings_display.jsx
@@ -297,7 +297,7 @@ class UserSettingsDisplay extends React.Component {
if (this.state.nameFormat === 'username') {
describe = formatMessage(holders.showUsername);
} else if (this.state.nameFormat === 'full_name') {
- describe = formatMessage(holders.showFullName);
+ describe = formatMessage(holders.showFullname);
} else {
describe = formatMessage(holders.showNickname);
}