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

cleanup footer

This commit is contained in:
sveisvei 2016-12-10 09:28:42 +01:00
parent 61729c3467
commit cde4f510df
2 changed files with 3 additions and 10 deletions

View File

@ -149,15 +149,6 @@ export default class App extends Component {
{/*createListItem('/client-instances', 'Client instances')*/}
</FooterLinkList>
</FooterDropDownSection>
<FooterDropDownSection title="FAQ">
<FooterLinkList>
<a href="#">Help</a>
<a href="#">Privacy & Terms</a>
<a href="#">Questions</a>
<a href="#">Answers</a>
<a href="#">Contact Us</a>
</FooterLinkList>
</FooterDropDownSection>
<FooterDropDownSection title="Clients">
<FooterLinkList>
<a href="https://github.com/Unleash/unleash-node-client/">Node.js</a>

View File

@ -71,7 +71,7 @@ class EditFeatureToggleWrapper extends React.Component {
<div>
<h4>{featureToggle.name} <small>{featureToggle.enabled ? 'is enabled' : 'is disabled'}</small></h4>
<hr />
<div style={{ maxWidth: '200px' }} >
<div style={{ maxWidth: '350px' }} >
<Switch style={{ cursor: 'pointer' }} onChange={() => toggleFeature(featureToggle)} checked={featureToggle.enabled}>
Toggle {featureToggle.name}
</Switch>
@ -123,6 +123,8 @@ class EditFeatureToggleWrapper extends React.Component {
</Link>
</Cell>
</Grid>
<p>{featureToggle.description}</p>
<hr />
<h4>Edit</h4>
<EditFeatureToggle featureToggle={featureToggle} />