select the deep link item

This commit is contained in:
Steve-Mcl 2023-03-26 11:00:28 +01:00
parent 4667e76c6b
commit 12ac260dce
1 changed files with 2 additions and 0 deletions

View File

@ -263,6 +263,7 @@ var RED = (function() {
setTimeout(() => {
RED.view.reveal(nodeToShow.id)
window.location.hash = currentHash
RED.view.select(nodeToShow.id)
if (showEditDialog) {
RED.editor.edit(nodeToShow)
}
@ -273,6 +274,7 @@ var RED = (function() {
if (nodeToShow) {
RED.view.reveal(nodeToShow.id)
window.location.hash = currentHash
RED.view.select({ nodes: [nodeToShow] })
if (showEditDialog) {
RED.editor.editGroup(nodeToShow)
}