Show broker stats only if compatible format is used

This commit is contained in:
Thomas Nordquist
2019-02-17 09:59:49 +01:00
parent 1339c1a292
commit 3cb89fe502

View File

@@ -42,7 +42,7 @@ class BrokerStatistics extends React.Component<Props, {}> {
public render() {
const { tree, classes } = this.props
if (!tree || !tree.findNode('$SYS')) {
if (!tree || !tree.findNode('$SYS/broker/clients/total')) {
return null
}