mirror of
https://github.com/Unleash/unleash.git
synced 2025-06-04 01:18:20 +02:00
fix: lint errors
This commit is contained in:
parent
7866a7e844
commit
c65d335b25
@ -1,6 +1,6 @@
|
|||||||
import React, { Component } from 'react';
|
import React, { Component } from 'react';
|
||||||
import PropTypes from 'prop-types';
|
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';
|
import { AppsLinkList, styles as commonStyles } from '../common';
|
||||||
|
|
||||||
const Empty = () => (
|
const Empty = () => (
|
||||||
|
@ -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>
|
</List>
|
||||||
</Card>
|
</Card>
|
||||||
|
@ -2,7 +2,7 @@ import React, { Component } from 'react';
|
|||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import { Link } from 'react-router-dom';
|
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 { HeaderTitle, styles as commonStyles } from '../common';
|
||||||
import { CREATE_STRATEGY, DELETE_STRATEGY } from '../../permissions';
|
import { CREATE_STRATEGY, DELETE_STRATEGY } from '../../permissions';
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user