summaryrefslogtreecommitdiffstats
path: root/webapp/components/searchable_user_list.jsx
diff options
context:
space:
mode:
authorAsaad Mahmood <asaadmahmood@users.noreply.github.com>2016-11-08 19:58:32 +0500
committerHarrison Healey <harrisonmhealey@gmail.com>2016-11-08 09:58:32 -0500
commitc0a631000e20b504c8f264b5863f2c1d5e08706c (patch)
tree61f2227550eee6dd52c7a076f862ebfaf3b3ad15 /webapp/components/searchable_user_list.jsx
parent428444d1852f3949ece0a9f6b73843f46c4a0fb7 (diff)
downloadchat-c0a631000e20b504c8f264b5863f2c1d5e08706c.tar.gz
chat-c0a631000e20b504c8f264b5863f2c1d5e08706c.tar.bz2
chat-c0a631000e20b504c8f264b5863f2c1d5e08706c.zip
PLT-4609 - Fixing list modals on mobile (#4453)
* PLT-4609 - Fixing list modals on mobile Removing style prop Removing utils import PLT-4609 - Fixing list modals on mobile Removing style prop Removing utils import Removing Utils Removing memberlist style prop Removing blank line * Removing height code from team members modal
Diffstat (limited to 'webapp/components/searchable_user_list.jsx')
-rw-r--r--webapp/components/searchable_user_list.jsx6
1 files changed, 1 insertions, 5 deletions
diff --git a/webapp/components/searchable_user_list.jsx b/webapp/components/searchable_user_list.jsx
index faa1b441c..3fa912d6d 100644
--- a/webapp/components/searchable_user_list.jsx
+++ b/webapp/components/searchable_user_list.jsx
@@ -156,10 +156,7 @@ export default class SearchableUserList extends React.Component {
}
return (
- <div
- className='filtered-user-list'
- style={this.props.style}
- >
+ <div className='filtered-user-list'>
<div className='filter-row'>
<div className='col-xs-9 col-sm-5'>
<input
@@ -229,6 +226,5 @@ SearchableUserList.propTypes = {
actions: React.PropTypes.arrayOf(React.PropTypes.func),
actionProps: React.PropTypes.object,
actionUserProps: React.PropTypes.object,
- style: React.PropTypes.object,
focusOnMount: React.PropTypes.bool.isRequired
};