1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

add spacing

This commit is contained in:
sveisvei 2016-12-05 18:29:18 +01:00
parent c43269e9fc
commit f377fc6f5e

View File

@ -15,7 +15,7 @@ class ClientStrategies extends Component {
.map(item => (
{
appName: <Link to={`/applications/${item.appName}`}>{item.appName}</Link>,
strategies: item.strategies && item.strategies.map(name => (<Link to={`/strategies/${name}`}>{name}</Link>)),
strategies: item.strategies && item.strategies.map(name => (<Link key={name} style={{ marginRight: '5px' }} to={`/strategies/${name}`}>{name}</Link>)),
})
);