mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-11 00:08:30 +01:00
Merge pull request #82 from Unleash/editable-state
editable=false on strategies
This commit is contained in:
commit
75ddedc5a6
@ -33,7 +33,11 @@ class StrategiesListComponent extends Component {
|
|||||||
<strong>{strategy.name}</strong>
|
<strong>{strategy.name}</strong>
|
||||||
</Link>
|
</Link>
|
||||||
</ListItemContent>
|
</ListItemContent>
|
||||||
|
{
|
||||||
|
strategy.editable === false ?
|
||||||
|
'' :
|
||||||
<IconButton name="delete" onClick={() => removeStrategy(strategy)} />
|
<IconButton name="delete" onClick={() => removeStrategy(strategy)} />
|
||||||
|
}
|
||||||
</ListItem>
|
</ListItem>
|
||||||
)) : <ListItem>No entries</ListItem>}
|
)) : <ListItem>No entries</ListItem>}
|
||||||
</List>
|
</List>
|
||||||
|
@ -60,21 +60,24 @@ export default class StrategyDetails extends Component {
|
|||||||
|
|
||||||
const tabContent = this.getTabContent(activeTabId);
|
const tabContent = this.getTabContent(activeTabId);
|
||||||
|
|
||||||
return (
|
return (<Grid className="mdl-color--white">
|
||||||
<Grid className="mdl-color--white">
|
|
||||||
<Cell col={12}>
|
<Cell col={12}>
|
||||||
<HeaderTitle title={strategy.name} subtitle={strategy.description} />
|
<HeaderTitle title={strategy.name} subtitle={strategy.description} />
|
||||||
<Tabs activeTab={activeTabId} ripple>
|
{strategy.editable === false ? '' : <Tabs activeTab={activeTabId} ripple>
|
||||||
<Tab onClick={() => this.goToTab('view')}>Details</Tab>
|
<Tab onClick={() => this.goToTab('view')}>
|
||||||
<Tab onClick={() => this.goToTab('edit')}>Edit</Tab>
|
Details
|
||||||
</Tabs>
|
</Tab>
|
||||||
|
<Tab onClick={() => this.goToTab('edit')}>
|
||||||
|
Edit
|
||||||
|
</Tab>
|
||||||
|
</Tabs>}
|
||||||
|
|
||||||
<section>
|
<section>
|
||||||
<div className="content">
|
<div className="content">
|
||||||
{tabContent}
|
{tabContent}
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</Cell>
|
</Cell>
|
||||||
</Grid>
|
</Grid>);
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user