pass lint

This commit is contained in:
riley
2017-03-24 10:42:31 -06:00
parent 5d5ad2585d
commit 701994f8f7
3 changed files with 6 additions and 7 deletions
@@ -38,7 +38,6 @@ const updateInfoBoxContent = (updateSettings) => (event) => {
};
const updateAutoClose = (updateSettings, autoCloseStream) => () => {
console.log('autoCloseStream', autoCloseStream);
updateSettings({autoCloseStream});
};
@@ -1,15 +1,15 @@
import React, { PropTypes } from 'react';
import React, {PropTypes} from 'react';
import CommentCount from './CommentCount';
import styles from './styles.css';
import { SelectField, Option } from 'react-mdl-selectfield';
import {SelectField, Option} from 'react-mdl-selectfield';
import I18n from 'coral-framework/modules/i18n/i18n';
import translations from 'coral-admin/src/translations.json';
import { Link } from 'react-router';
import {Link} from 'react-router';
const lang = new I18n(translations);
const ModerationMenu = (
{ asset, premodCount, rejectedCount, flaggedCount, selectSort, sort }
{asset, premodCount, rejectedCount, flaggedCount, selectSort, sort}
) => {
const premodPath = asset
? `/admin/moderate/premod/${asset.id}`
+2 -2
View File
@@ -1,5 +1,5 @@
import React, { PropTypes } from 'react';
import { Icon } from '../coral-ui';
import React, {PropTypes} from 'react';
import {Icon} from '../coral-ui';
import styles from './Comment.css';
import PubDate from '../coral-plugin-pubdate/PubDate';
import Content from '../coral-plugin-commentcontent/CommentContent';