From 6e6f359037bcef816404d669398c04d877e43c6d Mon Sep 17 00:00:00 2001 From: Hristo Hristov Date: Thu, 30 Jan 2025 11:13:37 +0200 Subject: [PATCH] fix(simple-combo): remove text selection trigger --- .../src/lib/simple-combo/simple-combo.component.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/projects/igniteui-angular/src/lib/simple-combo/simple-combo.component.ts b/projects/igniteui-angular/src/lib/simple-combo/simple-combo.component.ts index 5aff7bf37cc..03a064c5494 100644 --- a/projects/igniteui-angular/src/lib/simple-combo/simple-combo.component.ts +++ b/projects/igniteui-angular/src/lib/simple-combo/simple-combo.component.ts @@ -465,9 +465,8 @@ export class IgxSimpleComboComponent extends IgxComboBaseDirective implements Co } this.composing = false; - // explicitly update selection and trigger text selection so that we don't have to force CD + // explicitly update selection so that we don't have to force CD this.textSelection.selected = true; - this.textSelection.trigger(); } /** @hidden @internal */