mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-01 00:08:27 +01:00
fixing linting
This commit is contained in:
parent
bb5d11794d
commit
801cafbd14
@ -38,7 +38,8 @@ export default class FeatureListComponent extends React.Component {
|
|||||||
<List>
|
<List>
|
||||||
<ListSubHeader caption="Feature toggles" />
|
<ListSubHeader caption="Feature toggles" />
|
||||||
{features.map((feature, i) =>
|
{features.map((feature, i) =>
|
||||||
<Feature key={i} metrics={featureMetrics[feature.name]} feature={feature} onFeatureClick={onFeatureClick} onFeatureRemove={onFeatureRemove}/>
|
<Feature key={i} metrics={featureMetrics[feature.name]} feature={feature}
|
||||||
|
onFeatureClick={onFeatureClick} onFeatureRemove={onFeatureRemove}/>
|
||||||
)}
|
)}
|
||||||
<ListDivider />
|
<ListDivider />
|
||||||
<ListItem
|
<ListItem
|
||||||
|
@ -9,7 +9,7 @@ class Metrics extends Component {
|
|||||||
}
|
}
|
||||||
|
|
||||||
render () {
|
render () {
|
||||||
const { globalCount, apps, clientList } = this.props;
|
const { globalCount, clientList } = this.props;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<List>
|
<List>
|
||||||
|
Loading…
Reference in New Issue
Block a user