We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have a layout with the p-menubar and some action drawers in it. When visible is set to true, all content of the menubar is removed.
Menubar:
<p-menubar> <ng-template pTemplate="start"> <h3> Title</h3> </ng-template> <ng-template pTemplate="end"> <div class="flex items-center gap-2"> <notification-drawer></notification-drawer> <help-drawer></help-drawer> <account-preview></account-preview> </div> </ng-template> </p-menubar>
notification-drawer.component
<p-button [rounded]="true" [text]="true" (click)="visible = true" severity="info"> <ng-template pTemplate="icon"> <span class="material-icons-outlined">notifications</span> </ng-template> </p-button> <p-drawer [(visible)]="visible" position="right"> <ng-template pTemplate="header"> <div class="flex items-center gap-2"> <span class="material-icons-outlined">notifications</span> <span class="font-bold">Mitteilungen</span> </div> </ng-template> <ng-template pTemplate="content"> Keine neuen Mitteilungen </ng-template> </p-drawer>
I noticed this when upgrading from PrimeNG 18.0.0-beta.3 to 18.0.0-rc.1
No response
18.2.0
18.0.0-rc.1
Angular CLI App
TypeScript
22.5.1
Chrome 131.0.6778.71
Menubar content should not changed. Drawer should be shown on visible change.
The text was updated successfully, but these errors were encountered:
mehmetcetin01140
No branches or pull requests
Describe the bug
I have a layout with the p-menubar and some action drawers in it. When visible is set to true, all content of the menubar is removed.
Menubar:
notification-drawer.component
Environment
I noticed this when upgrading from PrimeNG 18.0.0-beta.3 to 18.0.0-rc.1
Reproducer
No response
Angular version
18.2.0
PrimeNG version
18.0.0-rc.1
Build / Runtime
Angular CLI App
Language
TypeScript
Node version (for AoT issues node --version)
22.5.1
Browser(s)
Chrome 131.0.6778.71
Steps to reproduce the behavior
Expected behavior
Menubar content should not changed.
Drawer should be shown on visible change.
The text was updated successfully, but these errors were encountered: