mirror of
https://github.com/fspc/workstand.git
synced 2025-02-23 09:13:23 -05:00
Linting.
This commit is contained in:
parent
367e978d31
commit
f35961a342
@ -1,22 +1,22 @@
|
||||
import React from 'react';
|
||||
import AutoComplete from 'material-ui/AutoComplete';
|
||||
import React from 'react';
|
||||
|
||||
export default class Member extends React.Component {
|
||||
render () {
|
||||
return (
|
||||
<AutoComplete
|
||||
dataSource={this.props.members}
|
||||
onUpdateInput={this.props.handleUpdate.bind(this)}
|
||||
openOnFocus={true}
|
||||
filter={AutoComplete.noFilter}
|
||||
onNewRequest={this.props.signIn.bind(this)}
|
||||
errorText={this.props.error}
|
||||
hintText="Search members"
|
||||
searchText={this.props.searchText}
|
||||
fullWidth={true}
|
||||
textFieldStyle={{textAlign: 'center', fontSize: '32px', lineHeight: '48px'}}
|
||||
tabIndex={this.props.tabIndex}
|
||||
/>
|
||||
);
|
||||
}
|
||||
render() {
|
||||
return (
|
||||
<AutoComplete
|
||||
dataSource={this.props.members}
|
||||
onUpdateInput={this.props.handleUpdate.bind(this)}
|
||||
openOnFocus
|
||||
filter={AutoComplete.noFilter}
|
||||
onNewRequest={this.props.signIn.bind(this)}
|
||||
errorText={this.props.error}
|
||||
hintText="Search members"
|
||||
searchText={this.props.searchText}
|
||||
fullWidth
|
||||
textFieldStyle={{ textAlign: 'center', fontSize: '32px', lineHeight: '48px' }}
|
||||
tabIndex={this.props.tabIndex}
|
||||
/>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user