fix display console.log args when navigating logs view

This commit is contained in:
Dmitry Vasilev
2023-06-10 23:03:17 +03:00
parent 1a23d3eefc
commit 05a43b617f
4 changed files with 48 additions and 33 deletions

View File

@@ -713,8 +713,11 @@ const select_return_value = state => {
selection_state: {
node,
initial_is_expand: true,
},
value_explorer: {
index: node.index + node.length,
result: result_node.result,
}
},
},
effects: {type: 'set_focus'}
}
@@ -755,8 +758,11 @@ const select_arguments = (state, with_focus = true) => {
selection_state: {
node,
initial_is_expand: true,
},
value_explorer: {
index: node.index + node.length,
result,
}
},
},
effects: with_focus
? {type: 'set_focus'}