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

fix: lint errors

This commit is contained in:
ivaosthu 2019-05-04 06:26:02 +02:00
parent 7866a7e844
commit c65d335b25
3 changed files with 5 additions and 3 deletions

View File

@ -1,6 +1,6 @@
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { ProgressBar, Card, CardTitle, CardText, Icon, Grid, Cell } from 'react-mdl';
import { ProgressBar, Card, CardText, Icon } from 'react-mdl';
import { AppsLinkList, styles as commonStyles } from '../common';
const Empty = () => (

View File

@ -124,7 +124,9 @@ export default class FeatureListComponent extends React.Component {
/>
))
) : (
<p style={{ textAlign: 'center', marginTop: '50px', color: 'gray' }}>Empty list of feature toggles</p>
<p style={{ textAlign: 'center', marginTop: '50px', color: 'gray' }}>
Empty list of feature toggles
</p>
)}
</List>
</Card>

View File

@ -2,7 +2,7 @@ import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { Link } from 'react-router-dom';
import { List, ListItem, ListItemContent, IconButton, Grid, Cell, Card } from 'react-mdl';
import { List, ListItem, ListItemContent, IconButton, Card } from 'react-mdl';
import { HeaderTitle, styles as commonStyles } from '../common';
import { CREATE_STRATEGY, DELETE_STRATEGY } from '../../permissions';