1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-05 23:10:41 +03:00

Fix line length lint warnings

I am about to run some code replacements that might make lines too long, so with
this change I know we're starting from 0 line length warnings.
This commit is contained in:
J. Ryan Stinnett
2019-01-10 19:18:21 -06:00
parent b2387f4cff
commit 989227d435
3 changed files with 15 additions and 4 deletions

View File

@@ -66,7 +66,11 @@ export default class IndicatorScrollbar extends React.Component {
}
render() {
return (<AutoHideScrollbar ref={this._collectScrollerComponent} wrappedRef={this._collectScroller} {... this.props}>
return (<AutoHideScrollbar
ref={this._collectScrollerComponent}
wrappedRef={this._collectScroller}
{... this.props}
>
{ this.props.children }
</AutoHideScrollbar>);
}