summaryrefslogtreecommitdiffstats
path: root/web/react/components/channel_invite_modal.jsx
diff options
context:
space:
mode:
authorAsaad Mahmood <asaad@spinpunch.com>2015-12-07 21:18:03 +0500
committerAsaad Mahmood <asaad@spinpunch.com>2015-12-07 21:18:03 +0500
commit901b830f2d5809d55890508b99ef5a868aace4e4 (patch)
tree97d31ef82c230aec4ad87be1a94a4a4232bcb6d6 /web/react/components/channel_invite_modal.jsx
parentb06f11fd632f146a204b4ef1357a8c099bade072 (diff)
downloadchat-901b830f2d5809d55890508b99ef5a868aace4e4.tar.gz
chat-901b830f2d5809d55890508b99ef5a868aace4e4.tar.bz2
chat-901b830f2d5809d55890508b99ef5a868aace4e4.zip
Multiple UI Improvements
Diffstat (limited to 'web/react/components/channel_invite_modal.jsx')
-rw-r--r--web/react/components/channel_invite_modal.jsx6
1 files changed, 4 insertions, 2 deletions
diff --git a/web/react/components/channel_invite_modal.jsx b/web/react/components/channel_invite_modal.jsx
index 56e2e53f9..749371c39 100644
--- a/web/react/components/channel_invite_modal.jsx
+++ b/web/react/components/channel_invite_modal.jsx
@@ -61,6 +61,9 @@ export default class ChannelInviteModal extends React.Component {
onShow() {
if ($(window).width() > 768) {
$(ReactDOM.findDOMNode(this.refs.modalBody)).perfectScrollbar();
+ $(ReactDOM.findDOMNode(this.refs.modalBody)).css('max-height', $(window).height() - 200);
+ } else {
+ $(ReactDOM.findDOMNode(this.refs.modalBody)).css('max-height', $(window).height() - 150);
}
}
componentDidUpdate(prevProps) {
@@ -139,11 +142,10 @@ export default class ChannelInviteModal extends React.Component {
onHide={this.props.onHide}
>
<Modal.Header closeButton={true}>
- <Modal.Title>{'Add New Members to '}<span className='name'>{this.props.channel.display_nam}</span></Modal.Title>
+ <Modal.Title>{'Add New Members to '}<span className='name'>{this.props.channel.display_name}</span></Modal.Title>
</Modal.Header>
<Modal.Body
ref='modalBody'
- style={{maxHeight}}
>
{inviteError}
{content}