summaryrefslogtreecommitdiffstats
path: root/webapp/utils
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/utils')
-rw-r--r--webapp/utils/channel_utils.jsx14
1 files changed, 12 insertions, 2 deletions
diff --git a/webapp/utils/channel_utils.jsx b/webapp/utils/channel_utils.jsx
index 2930e58b6..10d06fbe1 100644
--- a/webapp/utils/channel_utils.jsx
+++ b/webapp/utils/channel_utils.jsx
@@ -112,7 +112,9 @@ export function sortChannelsByDisplayName(a, b) {
return a.name.localeCompare(b.name, locale, {numeric: true});
}
-function getChannelDisplayName(channel) {
+const MAX_CHANNEL_NAME_LENGTH = 64;
+
+export function getChannelDisplayName(channel) {
if (channel.type !== Constants.GM_CHANNEL) {
return channel.display_name;
}
@@ -120,7 +122,15 @@ function getChannelDisplayName(channel) {
const currentUser = UserStore.getCurrentUser();
if (currentUser) {
- return channel.display_name.replace(currentUser.username + ', ', '');
+ let displayName = channel.display_name;
+ if (displayName.length >= MAX_CHANNEL_NAME_LENGTH) {
+ displayName += '...';
+ }
+ displayName = displayName.replace(currentUser.username + ', ', '').replace(currentUser.username, '').trim();
+ if (displayName[displayName.length - 1] === ',') {
+ return displayName.slice(0, -1);
+ }
+ return displayName;
}
return channel.display_name;