From 9c09d879d1ab5a4a3eff2f9324b63f35f7b5fdcd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 29 Nov 2023 18:27:29 +0000 Subject: [PATCH] [Data source] Fix datasource filtering issue (#5484) Fixes data source filtering issue within Discover. When typing into the index pattern field it will filter out and highlight the value being typed. Issue resolved: https://github.com/opensearch-project/OpenSearch-Dashboards/issues/5533 https://github.com/opensearch-project/OpenSearch-Dashboards/issues/5499 https://github.com/opensearch-project/OpenSearch-Dashboards/issues/5468 https://github.com/opensearch-project/OpenSearch-Dashboards/issues/5319 Signed-off-by: Eric (cherry picked from commit dadfefa3d324460bcbbc89592a061b10ca2133d7) Signed-off-by: github-actions[bot] --- .../data_sources/datasource_selector/datasource_selectable.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/plugins/data/public/data_sources/datasource_selector/datasource_selectable.tsx b/src/plugins/data/public/data_sources/datasource_selector/datasource_selectable.tsx index f522da79c129..aaab4d57c830 100644 --- a/src/plugins/data/public/data_sources/datasource_selector/datasource_selectable.tsx +++ b/src/plugins/data/public/data_sources/datasource_selector/datasource_selectable.tsx @@ -129,7 +129,6 @@ export const DataSourceSelectable = ({ onChange={handleSourceChange} singleSelection={singleSelection} isClearable={false} - async /> ); };