mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-31 00:16:47 +01:00
fix lint
This commit is contained in:
parent
c01ce2d3be
commit
937f14addb
@ -6,4 +6,3 @@ export const muteErrors = () => ({ type: MUTE_ERRORS });
|
|||||||
export const muteError = (error) => ({ type: MUTE_ERROR, error });
|
export const muteError = (error) => ({ type: MUTE_ERROR, error });
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@ const User = React.createClass({
|
|||||||
defaultValue={UserStore.get()}
|
defaultValue={UserStore.get()}
|
||||||
onBlur={this.onSave} />
|
onBlur={this.onSave} />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -51,7 +51,7 @@ const Feature = React.createClass({
|
|||||||
strategies={this.props.strategies} />
|
strategies={this.props.strategies} />
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
|
||||||
render () {
|
render () {
|
||||||
|
@ -75,7 +75,7 @@ const FeatureList = React.createClass({
|
|||||||
{featureNodes}
|
{featureNodes}
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -30,7 +30,7 @@ const LogEntriesComponent = React.createClass({
|
|||||||
<hr />
|
<hr />
|
||||||
<LogEntryList events={this.state.events} />
|
<LogEntryList events={this.state.events} />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -56,7 +56,7 @@ const StrategiesComponent = React.createClass({
|
|||||||
<button className="mal" onClick={this.onNewStrategy}>
|
<button className="mal" onClick={this.onNewStrategy}>
|
||||||
Create strategy
|
Create strategy
|
||||||
</button>
|
</button>
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -132,7 +132,7 @@ const StrategyForm = React.createClass({
|
|||||||
- Remove parameter
|
- Remove parameter
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
@ -13,7 +13,7 @@ const StrategyList = React.createClass({
|
|||||||
<Strategy strategy={strategy} key={strategy.name} onRemove={this.props.onRemove} />);
|
<Strategy strategy={strategy} key={strategy.name} onRemove={this.props.onRemove} />);
|
||||||
return (
|
return (
|
||||||
<div>{strategyNodes}</div>
|
<div>{strategyNodes}</div>
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user