diff --git a/src/components/multiselect/MultiSelect.vue b/src/components/multiselect/MultiSelect.vue index 9b27b8609..dc77e8a35 100755 --- a/src/components/multiselect/MultiSelect.vue +++ b/src/components/multiselect/MultiSelect.vue @@ -35,7 +35,7 @@
-
+
@@ -947,6 +947,12 @@ export default { 'p-ripple-disabled': this.$primevue.config.ripple === false }]; }, + headerCheckboxClass() { + return ['p-checkbox p-component', { + 'p-checkbox-checked': this.allSelected, + 'p-checkbox-focused': this.headerCheckboxFocused + }]; + }, visibleOptions() { const options = this.optionGroupLabel ? this.flatOptions(this.options) : (this.options || []);