summaryrefslogtreecommitdiffstats
path: root/webapp/components/navbar.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/navbar.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/navbar.jsx')
-rw-r--r--webapp/components/navbar.jsx31
1 files changed, 17 insertions, 14 deletions
diff --git a/webapp/components/navbar.jsx b/webapp/components/navbar.jsx
index 21ca53649..ee199fc03 100644
--- a/webapp/components/navbar.jsx
+++ b/webapp/components/navbar.jsx
@@ -218,20 +218,23 @@ export default class Navbar extends React.Component {
</li>
);
- leaveChannelOption = (
- <li role='presentation'>
- <a
- role='menuitem'
- href='#'
- onClick={this.handleLeave}
- >
- <FormattedMessage
- id='navbar.leave'
- defaultMessage='Leave Channel'
- />
- </a>
- </li>
- );
+ const canLeave = channel.type === Constants.PRIVATE_CHANNEL ? this.state.userCount > 1 : true;
+ if (canLeave) {
+ leaveChannelOption = (
+ <li role='presentation'>
+ <a
+ role='menuitem'
+ href='#'
+ onClick={this.handleLeave}
+ >
+ <FormattedMessage
+ id='navbar.leave'
+ defaultMessage='Leave Channel'
+ />
+ </a>
+ </li>
+ );
+ }
}
var manageMembersOption;