From 37c1e5199da4c1ae2fbbbda008186486833d7f9f Mon Sep 17 00:00:00 2001 From: gucal Date: Mon, 24 Apr 2023 13:08:39 +0300 Subject: [PATCH] Fix: #12906 - MultiSelect - maxSelectionLimit not refreshed after clear called --- src/app/components/multiselect/multiselect.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/components/multiselect/multiselect.ts b/src/app/components/multiselect/multiselect.ts index 7289ea3fc7b..bfd34553c4c 100755 --- a/src/app/components/multiselect/multiselect.ts +++ b/src/app/components/multiselect/multiselect.ts @@ -986,6 +986,7 @@ export class MultiSelect implements OnInit, AfterViewInit, AfterContentInit, Aft this.value = null; this.updateLabel(); this.updateFilledState(); + this.checkSelectionLimit(); this.onClear.emit(); this.onModelChange(this.value); event.stopPropagation();