Skip to content

Commit

Permalink
fix: possible undefined exception
Browse files Browse the repository at this point in the history
Signed-off-by: Jonas Niestroj <[email protected]>
  • Loading branch information
JonasNiestroj committed Mar 9, 2023
1 parent b92f082 commit fdc35f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion indyscan-webapp/txtools/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ function extractClassDataNode (txExpansion) {
if (data.node_ip) {
display.push({ priority: 1, label: 'Node', value: `${data.node_ip}:${data.node_port}` })
}
if (data.client_ip_geo) {
if (data.node_ip_geo) {
display.push({
priority: 1,
label: 'Node location',
Expand Down

0 comments on commit fdc35f8

Please sign in to comment.