diff --git a/client/app/scripts/components/app.js b/client/app/scripts/components/app.js
index 198d76441..987fb250f 100644
--- a/client/app/scripts/components/app.js
+++ b/client/app/scripts/components/app.js
@@ -11,7 +11,6 @@ import HelpPanel from './help-panel';
import Status from './status.js';
import Topologies from './topologies.js';
import TopologyOptions from './topology-options.js';
-import Plugins from './plugins.js';
import { getApiDetails, getTopologies } from '../utils/web-api-utils';
import { pinNextMetric, hitEsc, unpinMetric,
selectMetric, toggleHelp } from '../actions/app-actions';
@@ -180,7 +179,6 @@ export default class App extends React.Component {
-
diff --git a/client/app/scripts/components/footer.js b/client/app/scripts/components/footer.js
index 904b22018..249fb3052 100644
--- a/client/app/scripts/components/footer.js
+++ b/client/app/scripts/components/footer.js
@@ -1,6 +1,7 @@
import React from 'react';
import moment from 'moment';
+import Plugins from './plugins.js';
import { getUpdateBufferSize } from '../utils/update-buffer-utils';
import { contrastModeUrl, isContrastMode } from '../utils/contrast-utils';
import { clickDownloadGraph, clickForceRelayout, clickPauseUpdate,
@@ -8,7 +9,7 @@ import { clickDownloadGraph, clickForceRelayout, clickPauseUpdate,
import { basePathSlash } from '../utils/web-api-utils';
export default function Footer(props) {
- const { hostname, updatePaused, updatePausedAt, version } = props;
+ const { hostname, plugins, updatePaused, updatePausedAt, version } = props;
const contrastMode = isContrastMode();
// link url to switch contrast with current UI state
@@ -47,6 +48,10 @@ export default function Footer(props) {
{hostname}
+
+