Skip to content

Commit

Permalink
Merge 0b90c6f into 19395df
Browse files Browse the repository at this point in the history
  • Loading branch information
TheNetStriker authored May 10, 2021
2 parents 19395df + 0b90c6f commit da07c93
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ export default {
let nodeid = t.properties.zwave_nodeid
let bridgeUID = t.bridgeUID
let listening = t.properties.zwave_listening === 'true'
let neighbours = t.properties.zwave_neighbours ? t.properties.zwave_neighbours : ''
serie.data.push({
name: nodeid,
value: t.label,
Expand All @@ -110,7 +111,7 @@ export default {
borderWidth: 3
}
})
t.properties.zwave_neighbours.split(',').forEach((n) => {
neighbours.split(',').forEach((n) => {
let returnlink = serie.links.find((l) => l.target === nodeid && l.source === n)
if (!returnlink) {
serie.links.push({
Expand Down

0 comments on commit da07c93

Please sign in to comment.