forked from opensearch-project/OpenSearch-Dashboards
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Kawika Avilla <kavilla414@gmail.com> its working Signed-off-by: Kawika Avilla <kavilla414@gmail.com> create indexpattern on the fly Signed-off-by: Kawika Avilla <kavilla414@gmail.com> need to do major clean up Signed-off-by: Kawika Avilla <kavilla414@gmail.com> fix time fields not all being passed in Signed-off-by: Kawika Avilla <kavilla414@gmail.com> fix timestamp field Signed-off-by: Kawika Avilla <kavilla414@gmail.com> ppl working Signed-off-by: Kawika Avilla <kavilla414@gmail.com> somewhat working Signed-off-by: Kawika Avilla <kavilla414@gmail.com> working ok Signed-off-by: Kawika Avilla <kavilla414@gmail.com>
- Loading branch information
Showing
38 changed files
with
778 additions
and
300 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
feat: | ||
- Add DataSet dropdown with index patterns and indices ([#7289](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/7289)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
src/plugins/data/public/ui/dataset_navigator/create_dataset_navigator.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
import React from 'react'; | ||
import { SavedObjectsClientContract } from 'src/core/public'; | ||
import { DataSetNavigator, DataSetNavigatorProps } from './'; | ||
|
||
// Updated function signature to include additional dependencies | ||
export function createDataSetNavigator(savedObjectsClient: SavedObjectsClientContract) { | ||
// Return a function that takes props, omitting the dependencies from the props type | ||
return (props: Omit<DataSetNavigatorProps, 'savedObjectsClient'>) => ( | ||
<DataSetNavigator {...props} savedObjectsClient={savedObjectsClient} /> | ||
); | ||
} |
Oops, something went wrong.