Fixed scroll issue in the browser tree when navigating using the keyboard.

This commit is contained in:
Khushboo Vashi
2021-11-15 18:26:16 +05:30
committed by Akshay Joshi
parent 053519aef6
commit cc38bc132e
4 changed files with 8 additions and 8 deletions

View File

@@ -289,7 +289,7 @@ export default class SearchObjectsDialogWrapper extends DialogWrapper {
tree.findNodeWithToggle(rowData.id_path)
.then((treeItem)=>{
setTimeout(() => {
tree.select(treeItem, true);
tree.select(treeItem, true, 'center');
}, 100);
this.showMessage(null);
})