-
Notifications
You must be signed in to change notification settings - Fork 4.7k
New issue
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
Issue #13816 | MultiSelect - Delete button is not visible on chips with long label text #13825
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
1 Ignored Deployment
|
@@ -188,5 +188,8 @@ | |||
} | |||
} | |||
} | |||
}, | |||
"cli": { | |||
"analytics": false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This code is not necessary
@@ -10,7 +10,7 @@ import { NodeService } from '../../service/nodeservice'; | |||
<p>In single selection mode, value binding should be the <i>key</i> value of a node.</p> | |||
</app-docsectiontext> | |||
<div class="card flex justify-content-center"> | |||
<p-treeSelect class="md:w-20rem w-full" containerStyleClass="w-full" [(ngModel)]="selectedNodes" [options]="nodes" placeholder="Select Item"></p-treeSelect> | |||
<p-treeSelect class="md:w-20rem w-full" [showClear]="true" containerStyleClass="w-full" [(ngModel)]="selectedNodes" [options]="nodes" placeholder="Select Item"></p-treeSelect> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why you added the property [showClear]
in treeSelect
. I think is not necessary add that
src/app/components/panel/panel.ts
Outdated
@@ -50,6 +50,7 @@ import { PanelAfterToggleEvent, PanelBeforeToggleEvent } from './panel.interface | |||
|
|||
<ng-template *ngTemplateOutlet="headerIconTemplate; context: { $implicit: collapsed }"></ng-template> | |||
</button> | |||
<button (click)="toggle($event)">collapse</button> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't understand your PR abour multiselect component but you are modifying another components.
Add missing css.