From 5fc2205b540d138e9577e1187d8181b1bdef8373 Mon Sep 17 00:00:00 2001 From: natsoni Date: Mon, 19 Feb 2024 11:57:43 +0100 Subject: [PATCH] Fix nodes map undefined channels count --- frontend/src/app/lightning/nodes-map/nodes-map.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/lightning/nodes-map/nodes-map.component.ts b/frontend/src/app/lightning/nodes-map/nodes-map.component.ts index 5e655b584..bb9e21c4b 100644 --- a/frontend/src/app/lightning/nodes-map/nodes-map.component.ts +++ b/frontend/src/app/lightning/nodes-map/nodes-map.component.ts @@ -88,7 +88,7 @@ export class NodesMap implements OnInit, OnChanges { node.public_key, node.alias, node.capacity, - node.active_channel_count, + node.channels, node.country, node.iso_code, ]);