summaryrefslogtreecommitdiffstats
path: root/webapp/components/channel_header.jsx
diff options
context:
space:
mode:
authorenahum <nahumhbl@gmail.com>2016-05-10 09:24:52 -0300
committerChristopher Speller <crspeller@gmail.com>2016-05-10 08:24:52 -0400
commit45b22f312d3f57c63f86ffdbbb50c29108099993 (patch)
tree0921119d05ff8ae01a660269d3d1da639062c074 /webapp/components/channel_header.jsx
parent4f39b8b2e4e919c036d37718346a420f5a36f885 (diff)
downloadchat-45b22f312d3f57c63f86ffdbbb50c29108099993.tar.gz
chat-45b22f312d3f57c63f86ffdbbb50c29108099993.tar.bz2
chat-45b22f312d3f57c63f86ffdbbb50c29108099993.zip
PLT-2674 Private Group should not have Leave option when only one member remains (#2888)
Diffstat (limited to 'webapp/components/channel_header.jsx')
-rw-r--r--webapp/components/channel_header.jsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/webapp/components/channel_header.jsx b/webapp/components/channel_header.jsx
index 992244915..ca3878d68 100644
--- a/webapp/components/channel_header.jsx
+++ b/webapp/components/channel_header.jsx
@@ -409,7 +409,8 @@ export default class ChannelHeader extends React.Component {
}
}
- if (!ChannelStore.isDefault(channel)) {
+ const canLeave = channel.type === Constants.PRIVATE_CHANNEL ? this.state.userCount > 1 : true;
+ if (!ChannelStore.isDefault(channel) && canLeave) {
dropdownContents.push(
<li
key='leave_channel'