mirror of
https://github.com/Unleash/unleash.git
synced 2025-06-18 01:18:23 +02:00
fix lint
This commit is contained in:
parent
39cb20484b
commit
e8965398e6
@ -33,7 +33,11 @@ class StrategiesListComponent extends Component {
|
||||
<strong>{strategy.name}</strong>
|
||||
</Link>
|
||||
</ListItemContent>
|
||||
{strategy.editable === false ? '' : <IconButton name="delete" onClick={() => removeStrategy(strategy)} />}
|
||||
{
|
||||
strategy.editable === false ?
|
||||
'' :
|
||||
<IconButton name="delete" onClick={() => removeStrategy(strategy)} />
|
||||
}
|
||||
</ListItem>
|
||||
)) : <ListItem>No entries</ListItem>}
|
||||
</List>
|
||||
|
Loading…
Reference in New Issue
Block a user