Skip to content

Commit

Permalink
Merge pull request #13726 from Arematics/issue-13725
Browse files Browse the repository at this point in the history
Fixed #13725 - Speed Dial Items only visible when dial is visible
  • Loading branch information
cetincakiroglu committed Sep 25, 2023
2 parents b2c5499 + 0856d64 commit 7ac7287
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion 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 @@ -111,6 +111,7 @@ import { asapScheduler } from 'rxjs';
</a>
<ng-template #elseBlock>
<a
*ngIf="_visible"
[attr.href]="item.url || null"
class="p-speeddial-action"
role="menuitem"
Expand Down

1 comment on commit 7ac7287

@vercel
Copy link

@vercel vercel bot commented on 7ac7287 Sep 25, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.