Skip to content

Commit 1ceee96

Browse files
authored
(fix)(#972) The scroll does not work in the searchers once an item has been selected (#973)
1 parent 5dd5661 commit 1ceee96

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

projects/systelab-components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "systelab-components",
3-
"version": "17.4.4",
3+
"version": "17.4.5",
44
"license": "MIT",
55
"keywords": [
66
"Angular",

projects/systelab-components/src/lib/searcher/searcher.table.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@ export class SearcherTableComponent<T> extends AbstractApiGrid<T> implements OnI
9696
this.gridOptions.api.forEachNode(node => {
9797
if (node.data && node.data[this.searcher.getIdField()] === this.searcher.id) {
9898
node.selectThisNode(true);
99-
this.gridOptions.api.ensureNodeVisible(node);
10099
}
101100
});
102101
}

0 commit comments

Comments
 (0)