summaryrefslogtreecommitdiffstats
path: root/webapp/components/more_channels.jsx
diff options
context:
space:
mode:
authorAsaad Mahmood <asaadmahmood@users.noreply.github.com>2016-11-12 00:54:53 +0500
committerHarrison Healey <harrisonmhealey@gmail.com>2016-11-11 14:54:53 -0500
commit29efeff09532397a33bb971e91324f673b296559 (patch)
tree3d50210d23d487740482b12d987ff2d7d290f435 /webapp/components/more_channels.jsx
parent2f488b13c7e6e3e89fd603c1e1c4d9e9e21dbb8c (diff)
downloadchat-29efeff09532397a33bb971e91324f673b296559.tar.gz
chat-29efeff09532397a33bb971e91324f673b296559.tar.bz2
chat-29efeff09532397a33bb971e91324f673b296559.zip
PLT-4609 - Fixing list modals on mobile (#4536)
* PLT-4609 - Fixing list modals on mobile * PLT-4609 - Adjust more modal height
Diffstat (limited to 'webapp/components/more_channels.jsx')
-rw-r--r--webapp/components/more_channels.jsx10
1 files changed, 1 insertions, 9 deletions
diff --git a/webapp/components/more_channels.jsx b/webapp/components/more_channels.jsx
index b35f5b997..e57c5d25f 100644
--- a/webapp/components/more_channels.jsx
+++ b/webapp/components/more_channels.jsx
@@ -96,11 +96,6 @@ export default class MoreChannels extends React.Component {
}
render() {
- let maxHeight = 1000;
- if (Utils.windowHeight() <= 1200) {
- maxHeight = Utils.windowHeight() - 300;
- }
-
let serverError;
if (this.state.serverError) {
serverError = <div className='form-group has-error'><label className='control-label'>{this.state.serverError}</label></div>;
@@ -204,10 +199,7 @@ export default class MoreChannels extends React.Component {
onModalDismissed={() => this.setState({showNewChannelModal: false})}
/>
</div>
- <div
- className='modal-body'
- style={{maxHeight}}
- >
+ <div className='modal-body'>
{moreChannels}
{serverError}
</div>