Nothing to show. This can have any of these reasons:
- - We haven't received any reports from probes recently.
+
- We haven't received any reports from probes recently.
Are the probes properly configured?
- - There are nodes, but they're currently hidden. Check the view options
+
- There are nodes, but they're currently hidden. Check the view options
in the bottom-left if they allow for showing hidden nodes.
- - Containers view only: you're not running Docker,
- or you don't have any containers.
+ - Containers view only: you're not running Docker,
+ or you don't have any containers.
);
diff --git a/client/app/scripts/main.dev.js b/client/app/scripts/main.dev.js
index 96d5353ea..6a354bf6d 100644
--- a/client/app/scripts/main.dev.js
+++ b/client/app/scripts/main.dev.js
@@ -11,8 +11,8 @@ import configureStore from './stores/configureStore.dev';
import DevTools from './components/dev-tools';
import Immutable from 'immutable';
import installDevTools from 'immutable-devtools';
-installDevTools(Immutable);
+installDevTools(Immutable);
const store = configureStore();
function renderApp() {
diff --git a/client/app/scripts/reducers/root.js b/client/app/scripts/reducers/root.js
index 28a3fb36f..071b91a45 100644
--- a/client/app/scripts/reducers/root.js
+++ b/client/app/scripts/reducers/root.js
@@ -230,7 +230,7 @@ export function rootReducer(state = initialState, action) {
}
case ActionTypes.CLICK_PAUSE_UPDATE: {
- return state.set('updatePausedAt', new Date);
+ return state.set('updatePausedAt', new Date());
}
case ActionTypes.CLICK_RELATIVE: {
diff --git a/client/app/scripts/utils/delayed-show.js b/client/app/scripts/utils/delayed-show.js
index fb4df720e..5693219de 100644
--- a/client/app/scripts/utils/delayed-show.js
+++ b/client/app/scripts/utils/delayed-show.js
@@ -1,7 +1,7 @@
import React from 'react';
-export class DelayedShow extends React.Component {
+export default class DelayedShow extends React.Component {
constructor(props, context) {
super(props, context);
this.state = {
diff --git a/client/app/scripts/utils/file-utils.js b/client/app/scripts/utils/file-utils.js
index 33af43d55..e01723560 100644
--- a/client/app/scripts/utils/file-utils.js
+++ b/client/app/scripts/utils/file-utils.js
@@ -74,11 +74,11 @@ function download(source, name) {
if (name) {
filename = name;
} else if (window.document.title) {
- filename = `${window.document.title.replace(/[^a-z0-9]/gi, '-').toLowerCase()}-${(+new Date)}`;
+ filename = `${window.document.title.replace(/[^a-z0-9]/gi, '-').toLowerCase()}-${(+new Date())}`;
}
const url = window.URL.createObjectURL(new Blob(source,
- {type: 'text\/xml'}
+ { type: 'text/xml' }
));
const a = document.createElement('a');
diff --git a/client/app/scripts/utils/metric-utils.js b/client/app/scripts/utils/metric-utils.js
index 1d481f0fd..a686d4df0 100644
--- a/client/app/scripts/utils/metric-utils.js
+++ b/client/app/scripts/utils/metric-utils.js
@@ -6,7 +6,7 @@ import React from 'react';
export function getClipPathDefinition(clipId, size, height,
- x = -size * 0.5, y = size * 0.5 - height) {
+ x = -size * 0.5, y = size * 0.5 - height) {
return (