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,19 +48,21 @@ function buildGraph(overview) {
id++ id++
if(item.services != null) { if(item.services != null) {
item.services.forEach((item) => { item.services.forEach((item) => {
out.nodes.push({ if(item.active) {
id: '' + id, out.nodes.push({
data: {label: 'Service: ' + item.zitiServiceId}, id: '' + id,
position: {x: (id * 25), y: 0}, data: {label: 'Service: ' + item.zitiServiceId},
draggable: true position: {x: (id * 25), y: 0},
}) draggable: true
out.edges.push({ })
id: 'e' + envId + '-' + id, out.edges.push({
source: '' + id, id: 'e' + envId + '-' + id,
target: '' + envId, source: '' + envId,
animated: true target: '' + id,
}) animated: true
id++ })
id++
}
}); });
} }
}); });