mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
add spacing
This commit is contained in:
parent
c43269e9fc
commit
f377fc6f5e
@ -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>)),
|
||||
})
|
||||
);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user