Closed
Description
Assuming the following render call.
React.render(
<views.AddedServicesButton
serviceCount={serviceCount}
closed={closed}
changeState={this.__changeState.bind(this)}/>, container);
The generated output.
React.render(
React.createElement(views.AddedServicesButton, {
serviceCount: serviceCount,
closed: closed,
changeState: this.__changeState.bind(this)}), container);
You'll notice that there is a trailing white space on the serviceCount
and closed
properties which is causing issues for linters which don't allow trailing white space.
Metadata
Metadata
Assignees
Labels
No labels