diff --git a/src/webui/src/components/Help/index.js b/src/webui/src/components/Help/index.js index 2c10cadbb..9061cc395 100644 --- a/src/webui/src/components/Help/index.js +++ b/src/webui/src/components/Help/index.js @@ -1,6 +1,6 @@ import React from 'react'; -import SyntaxHighlighter from 'react-syntax-highlighter/dist/highlight'; +import SyntaxHighlighter from 'react-syntax-highlighter/dist/index'; import sunburst from 'react-syntax-highlighter/src/styles/sunburst'; import classes from './help.scss'; diff --git a/src/webui/src/components/PackageList/index.js b/src/webui/src/components/PackageList/index.js index 4fc75dabd..9e3a76e3d 100644 --- a/src/webui/src/components/PackageList/index.js +++ b/src/webui/src/components/PackageList/index.js @@ -1,5 +1,6 @@ import React from 'react'; import PropTypes from 'prop-types'; +import isEmpty from 'lodash/isEmpty'; import Package from '../Package'; import Help from '../Help'; @@ -12,18 +13,12 @@ export default class PackageList extends React.Component { packages: PropTypes.array } - renderList() { - return this.props.packages.map((pkg, i)=> ( -