diff options
author | Rickard Green <rickard@erlang.org> | 2022-03-22 03:47:07 +0100 |
---|---|---|
committer | Rickard Green <rickard@erlang.org> | 2022-03-22 03:48:10 +0100 |
commit | fd6100db1cb2d22df5f3d195b4a9e20382100748 (patch) | |
tree | 52b7f4037c07e7913ccb19903d0b76bbcab7bbe3 /lib/observer | |
parent | 7bd6e24d3dded3a393f9bb774ccf98cc0af4d595 (diff) | |
download | erlang-fd6100db1cb2d22df5f3d195b4a9e20382100748.tar.gz |
crashdump_viewer: Fix remote process info
Diffstat (limited to 'lib/observer')
-rw-r--r-- | lib/observer/src/cdv_proc_cb.erl | 2 |
1 files changed, 1 insertions, 1 deletions
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.", |