Skip to content

Commit

Permalink
Fixed #13725 - Speed Dial Items only visible when dial is visible
Browse files Browse the repository at this point in the history
  • Loading branch information
EnricoMessall committed Sep 24, 2023
1 parent 396297a commit 78e50a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/components/speeddial/speeddial.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ import { asapScheduler } from 'rxjs';
[attr.data-pc-section]="'menuitem'"
>
<a
*ngIf="isClickableRouterLink(item); else elseBlock"
*ngIf="_visible && isClickableRouterLink(item); else elseBlock"
pRipple
[routerLink]="item.routerLink"
[queryParams]="item.queryParams"
Expand All @@ -110,7 +110,7 @@ import { asapScheduler } from 'rxjs';
<span class="p-speeddial-action-icon" *ngIf="item.icon" [ngClass]="item.icon"></span>
</a>
<ng-template #elseBlock>
<a
<a *ngIf="_visible"
[attr.href]="item.url || null"
class="p-speeddial-action"
role="menuitem"
Expand Down

0 comments on commit 78e50a9

Please sign in to comment.