aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/components/panels
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/components/panels')
-rw-r--r--frontend/src/components/panels/StatsPane.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/components/panels/StatsPane.js b/frontend/src/components/panels/StatsPane.js
index dd774d0..a35ef0c 100644
--- a/frontend/src/components/panels/StatsPane.js
+++ b/frontend/src/components/panels/StatsPane.js
@@ -80,7 +80,7 @@ class StatsPane extends Component {
const s = this.state.stats;
const rs = this.state.resourcesStats;
- const ports = s ? Object.keys(s["connections_per_service"]) : [];
+ const ports = s && s["connections_per_service"] ? Object.keys(s["connections_per_service"]) : [];
let connections = 0, clientBytes = 0, serverBytes = 0, totalBytes = 0, duration = 0;
let servicesStats = ports.map((port) => {
connections += s["connections_per_service"][port];