1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-31 00:16:47 +01:00
This commit is contained in:
sveisvei 2016-11-02 13:01:50 +01:00
parent c01ce2d3be
commit 937f14addb
8 changed files with 7 additions and 8 deletions

View File

@ -6,4 +6,3 @@ export const muteErrors = () => ({ type: MUTE_ERRORS });
export const muteError = (error) => ({ type: MUTE_ERROR, error });

View File

@ -18,7 +18,7 @@ const User = React.createClass({
defaultValue={UserStore.get()}
onBlur={this.onSave} />
</div>
);
);
},
});

View File

@ -51,7 +51,7 @@ const Feature = React.createClass({
strategies={this.props.strategies} />
</td>
</tr>
);
);
},
render () {

View File

@ -75,7 +75,7 @@ const FeatureList = React.createClass({
{featureNodes}
</table>
</div>
);
);
},
});

View File

@ -30,7 +30,7 @@ const LogEntriesComponent = React.createClass({
<hr />
<LogEntryList events={this.state.events} />
</div>
);
);
},
});

View File

@ -56,7 +56,7 @@ const StrategiesComponent = React.createClass({
<button className="mal" onClick={this.onNewStrategy}>
Create strategy
</button>
);
);
},
});

View File

@ -132,7 +132,7 @@ const StrategyForm = React.createClass({
- Remove parameter
</a>
</div>
);
);
}
},
});

View File

@ -13,7 +13,7 @@ const StrategyList = React.createClass({
<Strategy strategy={strategy} key={strategy.name} onRemove={this.props.onRemove} />);
return (
<div>{strategyNodes}</div>
);
);
},
});