node/impact: Show message if no impact is detected

fixes #160
This commit is contained in:
Johannes Meyer 2019-02-19 08:45:39 +01:00
parent c8a6eee054
commit 324a6e898d

View file

@ -57,5 +57,9 @@ class NodeController extends Controller
$content->add($bc);
}
}
if ($content->isEmpty()) {
$content->add($this->translate('No impact detected. Is this node part of a business process?'));
}
}
}