From f26f47022053da980ab9e4228304ec2b19fdb0df Mon Sep 17 00:00:00 2001 From: MonikaKirkova Date: Thu, 10 Jul 2025 15:48:04 +0300 Subject: [PATCH] fix(combo): set disableFiltering property --- .../combo/combo-features/combo-features.component.html | 6 +++--- .../lists/combo/combo-features/combo-features.component.ts | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/lists/combo/combo-features/combo-features.component.html b/src/app/lists/combo/combo-features/combo-features.component.html index 4413175416..92c25d630e 100644 --- a/src/app/lists/combo/combo-features/combo-features.component.html +++ b/src/app/lists/combo/combo-features/combo-features.component.html @@ -1,12 +1,12 @@ -Enable Filtering
-Show Case-sensitive Icon
+Disable Filtering
+Show Case-sensitive Icon
Allow Custom Values
Enable Grouping
Disable Combo diff --git a/src/app/lists/combo/combo-features/combo-features.component.ts b/src/app/lists/combo/combo-features/combo-features.component.ts index 8c44997f6e..da19dcdf3b 100644 --- a/src/app/lists/combo/combo-features/combo-features.component.ts +++ b/src/app/lists/combo/combo-features/combo-features.component.ts @@ -14,7 +14,7 @@ export class ComboFeaturesComponent implements OnInit{ // eslint-disable-next-line @typescript-eslint/naming-convention public GROUP_KEY = 'region'; public lData: any[]; - public filterable = true; + public disableFiltering = false; public showSearchCaseIcon = false; public customValues = true; public disabled = false;