1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-16 00:06:40 +01:00

update label

This commit is contained in:
ivaosthu 2016-10-25 23:30:11 +02:00
parent 4ed75931af
commit 8b378b9fea
2 changed files with 2 additions and 3 deletions

View File

@ -63,7 +63,7 @@ class ConfigureStrategies extends React.Component {
); );
} }
const inputFields = this.renderInputFields(this.props.strategyDefinition); const inputFields = this.renderInputFields(this.props.strategyDefinition) || [];
return ( return (
<ListItem leftActions={leftActions} <ListItem leftActions={leftActions}

View File

@ -57,9 +57,8 @@ class AddStrategy extends React.Component {
<Dropdown <Dropdown
source={strats} source={strats}
onChange={this.addStrategy} onChange={this.addStrategy}
label="Select activation strategy to add" label="+ Add strategy"
template={this.customItem} template={this.customItem}
value={this.props.strategies[0].name}
/> />
); );
} }