Skip to content

Commit

Permalink
fix(kit): DataListWrapper fix emptyContent not working
Browse files Browse the repository at this point in the history
  • Loading branch information
waterplea committed Jan 12, 2021
1 parent 87893fb commit 6a56669
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<tui-data-list *ngIf="items else loading">
<tui-data-list *ngIf="items else loading" [emptyContent]="emptyContent">
<tui-opt-group
*ngFor="let group of items; let index = index"
[label]="labels[index]"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<tui-data-list *ngIf="items else loading">
<tui-data-list *ngIf="items else loading" [emptyContent]="emptyContent">
<button
*ngFor="let item of items"
#elementRef="elementRef"
Expand Down

0 comments on commit 6a56669

Please sign in to comment.