Skip to content

Commit

Permalink
Merge pull request #433 from UiPath/fix/tree-select-disappear
Browse files Browse the repository at this point in the history
fix(tree-select): tree nodes disappears after loading
  • Loading branch information
CatalinB7 authored Dec 7, 2023
2 parents a12230e + 9cf0e03 commit 68cea3d
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# v15.0.12 (2023-12-07)
* **tree-select** tree nodes disappears after loading

# v15.0.11 (2023-12-05)
* **grid** selectable index react to pageSize
* **file-picker** make input optional in file-drop-zone
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-components",
"version": "15.0.11",
"version": "15.0.12",
"author": {
"name": "UiPath Inc",
"url": "https://uipath.com"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
[ngTemplateOutlet]="headerTemplate">
</ng-template>

<cdk-virtual-scroll-viewport (keydown)="onKeydown($event)"
<cdk-virtual-scroll-viewport *uiContentLoading="loading"
(keydown)="onKeydown($event)"
[itemSize]="itemSize"
class="virtual-scroll-container"
tabindex="0">
<mat-list *uiContentLoading="loading"
role="tree"
<mat-list role="tree"
class="tree-container">
<ng-container *ngIf="dataSource.data.length == 0">
<ng-content select="[noDataMessage]"></ng-content>
Expand Down
2 changes: 1 addition & 1 deletion projects/angular/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@uipath/angular",
"version": "15.0.11",
"version": "15.0.12",
"license": "MIT",
"author": {
"name": "UiPath Inc",
Expand Down

0 comments on commit 68cea3d

Please sign in to comment.