Skip to content

Commit

Permalink
Merge pull request #16885 from primefaces/issue-16479
Browse files Browse the repository at this point in the history
Fixed #16479 | MultiSelect v18: Wrong placeholder color - missing p-p…
  • Loading branch information
mehmetcetin01140 authored Nov 29, 2024
2 parents c7a3831 + 4ac372c commit 2c87193
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/primeng/src/multiselect/style/multiselectstyle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ const classes = {
labelContainer: 'p-multiselect-label-container',
label: ({ instance }) => ({
'p-multiselect-label': true,
'p-placeholder': instance.label === instance.placeholder(),
'p-placeholder': instance.label() === instance.placeholder(),
'p-multiselect-label-empty': !instance.placeholder() && !instance.defaultLabel && (!instance.modelValue() || instance.modelValue().length === 0)
}),
chipItem: 'p-multiselect-chip-item',
Expand Down

0 comments on commit 2c87193

Please sign in to comment.