Skip to content
Snippets Groups Projects
Commit e8411e34 authored by Guillaume Heurtier's avatar Guillaume Heurtier
Browse files

FEAT #13993 TIME 0:20 fix entity not selected in redirect action

parent 6ff5f68d
No related branches found
No related tags found
No related merge requests found
......@@ -9,5 +9,5 @@
</head>
<body>
<app-root></app-root>
<script src="runtime.ab8a82d9fa1776b0f9a2.js" defer></script><script src="polyfills-es5.edc5de4d1140a2eeda65.js" nomodule defer></script><script src="scripts.0ee84e5cb8e2553ffadc.js" defer></script><script src="main.5069c7ed524c7edf8c1c.js" defer></script></body>
<script src="runtime.ab8a82d9fa1776b0f9a2.js" defer></script><script src="polyfills-es5.edc5de4d1140a2eeda65.js" nomodule defer></script><script src="scripts.0ee84e5cb8e2553ffadc.js" defer></script><script src="main.54ed28cf190e2f2321da.js" defer></script></body>
</html>
Source diff could not be displayed: it is too large. Options to address this: view the blob.
......@@ -167,14 +167,14 @@ export class RedirectActionComponent implements OnInit {
})
// create the instance
.jstree();
}, 0);
if (this.currentEntity.serialId > 0) {
setTimeout(() => {
$j('#jstree').jstree('select_node', this.currentEntity);
this.selectEntity(this.currentEntity, true);
}, 200);
}
if (this.currentEntity.serialId > 0) {
setTimeout(() => {
$j('#jstree').jstree('select_node', this.currentEntity);
this.selectEntity(this.currentEntity, true);
}, 300);
}
}, 0);
}
loadDestUser() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment