diff --git a/frontend/src/component/application/application-list-component.js b/frontend/src/component/application/application-list-component.js index f808eef0f8..81be64eb43 100644 --- a/frontend/src/component/application/application-list-component.js +++ b/frontend/src/component/application/application-list-component.js @@ -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 = () => ( diff --git a/frontend/src/component/feature/list-component.jsx b/frontend/src/component/feature/list-component.jsx index 27dca7d6f4..fbdc926e1a 100644 --- a/frontend/src/component/feature/list-component.jsx +++ b/frontend/src/component/feature/list-component.jsx @@ -124,7 +124,9 @@ export default class FeatureListComponent extends React.Component { /> )) ) : ( -

Empty list of feature toggles

+

+ Empty list of feature toggles +

)} diff --git a/frontend/src/component/strategies/list-component.jsx b/frontend/src/component/strategies/list-component.jsx index 0b2c186999..48f0fb17db 100644 --- a/frontend/src/component/strategies/list-component.jsx +++ b/frontend/src/component/strategies/list-component.jsx @@ -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';