Skip to content

Commit

Permalink
Fixed #868 - Multiselect: selected values are not shown without place…
Browse files Browse the repository at this point in the history
…holder
  • Loading branch information
tugcekucukoglu committed Jan 27, 2021
1 parent 58f2c56 commit 92b05c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/multiselect/MultiSelect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ export default {
'p-multiselect-label',
{
'p-placeholder': this.label === this.placeholder,
'p-multiselect-label-empty': !this.placeholder && (!this.modelValue || this.modelValue.length === 0)
'p-multiselect-label-empty': !this.placeholder && (!this.value || this.value.length === 0)
}
];
},
Expand Down

0 comments on commit 92b05c1

Please sign in to comment.