Don't update presence status if the user is clicks twice

Signed-off-by: Travis Ralston <travpc@gmail.com>
pull/5286/head
Travis Ralston 2017-10-15 20:20:43 -06:00
parent deb50b2d43
commit ef5fc7347a
1 changed files with 1 additions and 0 deletions

View File

@ -34,6 +34,7 @@ const PresenceContextMenuOption = React.createClass({
},
onClick: function() {
if (this.isCurrent) return;
this.props.onChange(this.props.forStatus);
},