only show active services

This commit is contained in:
Michael Quigley 2022-08-04 11:12:54 -04:00
parent 462e90a97f
commit 9002513774
No known key found for this signature in database
GPG Key ID: 9B60314A9DD20A62

View File

@ -48,6 +48,7 @@ function buildGraph(overview) {
id++
if(item.services != null) {
item.services.forEach((item) => {
if(item.active) {
out.nodes.push({
id: '' + id,
data: {label: 'Service: ' + item.zitiServiceId},
@ -56,11 +57,12 @@ function buildGraph(overview) {
})
out.edges.push({
id: 'e' + envId + '-' + id,
source: '' + id,
target: '' + envId,
source: '' + envId,
target: '' + id,
animated: true
})
id++
}
});
}
});