diff --git a/src/app/components/multiselect/multiselect.ts b/src/app/components/multiselect/multiselect.ts index a2bc8809e7b..a5dfede586e 100755 --- a/src/app/components/multiselect/multiselect.ts +++ b/src/app/components/multiselect/multiselect.ts @@ -179,7 +179,7 @@ export class MultiSelectItem { - + @@ -1003,7 +1003,7 @@ export class MultiSelect implements OnInit, AfterViewInit, AfterContentInit, Aft } get isVisibleClearIcon(): boolean | undefined { - return this.modelValue() != null && this.modelValue() !== '' && this.showClear && !this.disabled; + return this.modelValue() != null && this.modelValue() !== '' && ObjectUtils.isNotEmpty(this.modelValue()) && this.showClear && !this.disabled && this.filled; } get toggleAllAriaLabel() {