summaryrefslogtreecommitdiffstats
path: root/web/react/components/user_profile.jsx
diff options
context:
space:
mode:
authorAsaad Mahmood <Unknowngi@live.com>2015-10-15 22:57:07 +0500
committerAsaad Mahmood <Unknowngi@live.com>2015-10-15 22:57:07 +0500
commitac2bac0334dfa1da0ec80408ffc3ac8f79b9fade (patch)
tree3885fd48c6a0b98f126f65b9c4bcd9345c50d45c /web/react/components/user_profile.jsx
parent95aaa0a08084885c2b0ffb07198d38d5890426ab (diff)
downloadchat-ac2bac0334dfa1da0ec80408ffc3ac8f79b9fade.tar.gz
chat-ac2bac0334dfa1da0ec80408ffc3ac8f79b9fade.tar.bz2
chat-ac2bac0334dfa1da0ec80408ffc3ac8f79b9fade.zip
Changing user popover trigger from hover click to just click
Diffstat (limited to 'web/react/components/user_profile.jsx')
-rw-r--r--web/react/components/user_profile.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/components/user_profile.jsx b/web/react/components/user_profile.jsx
index 782cb0659..715161b4f 100644
--- a/web/react/components/user_profile.jsx
+++ b/web/react/components/user_profile.jsx
@@ -91,7 +91,7 @@ export default class UserProfile extends React.Component {
return (
<OverlayTrigger
- trigger={['hover', 'click']}
+ trigger='click'
placement='right'
rootClose='true'
overlay={<Popover title={this.state.profile.username}>{dataContent}</Popover>}