File 0881-crashdump_viewer-Fix-remote-process-info.patch of Package erlang
From fd6100db1cb2d22df5f3d195b4a9e20382100748 Mon Sep 17 00:00:00 2001
From: Rickard Green <rickard@erlang.org>
Date: Tue, 22 Mar 2022 03:47:07 +0100
Subject: [PATCH] crashdump_viewer: Fix remote process info
---
lib/observer/src/cdv_proc_cb.erl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/observer/src/cdv_proc_cb.erl b/lib/observer/src/cdv_proc_cb.erl
index aee817a097..340a702c49 100644
--- a/lib/observer/src/cdv_proc_cb.erl
+++ b/lib/observer/src/cdv_proc_cb.erl
@@ -77,7 +77,7 @@ get_details(Id, _) ->
Info = "The process you are searching for was residing on "
"a remote node. No process information is available. "
"Show information about the remote node?",
- Fun = fun() -> cdv_virtual_list_wx:start_detail_win(NodeId, port) end,
+ Fun = fun() -> cdv_virtual_list_wx:start_detail_win(NodeId, node) end,
{yes_no, Info, Fun};
{error,not_found} ->
Info = "The process you are searching for could not be found.",
--
2.34.1