Skip to content

Commit

Permalink
fix empty template
Browse files Browse the repository at this point in the history
  • Loading branch information
rrchai committed May 14, 2024
1 parent 521c181 commit d451b43
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@

<!-- Empty results templates -->
<ng-template pTemplate="empty">
<div *ngIf="isLoading; else noResults">
<div *ngIf="options.length === 0 && isLoading; else noResults">
<div *ngIf="showAvatar; else noIconLoader" class="loader-with-icon-container">
<div *ngFor="let _ of [].constructor(5)" class="skeleton-with-icon">
<p-skeleton class="circle" shape="circle" size="2rem"></p-skeleton>
Expand Down

0 comments on commit d451b43

Please sign in to comment.