Skip to content

Commit

Permalink
Fix order of application info items (#101)
Browse files Browse the repository at this point in the history
Memory and Reductions were swapped
  • Loading branch information
gomoripeti authored Jul 23, 2024
1 parent e4e3408 commit 7e6a7ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/observer_cli_application.erl
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ render_app_info(Row, CurPage, {Type, N}) ->
]),
{_, View} = lists:foldl(
fun({_, _, Item}, {Pos, Acc}) ->
[App, C, R, M, Q, S, V] = Item,
[App, C, M, R, Q, S, V] = Item,
{Pos + 1, [
?render([
?W(Pos, 2),
Expand Down

0 comments on commit 7e6a7ae

Please sign in to comment.