Skip to content

Commit

Permalink
Fix typescript
Browse files Browse the repository at this point in the history
  • Loading branch information
Maja Grubic committed Feb 23, 2023
1 parent 39ec7a2 commit 2a64434
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/plugins/saved_objects_finder/kibana.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
"id": "savedObjectsFinder",
"server": true,
"browser": true,
"requiredBundles": []
"requiredBundles": ["savedObjects"]
}
}
2 changes: 1 addition & 1 deletion src/plugins/saved_objects_finder/public/finder/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const SavedObjectFinder = (props: SavedObjectFinderProps) => (
export const getSavedObjectFinder = (
uiSettings: IUiSettingsClient,
http: HttpStart,
savedObjectsManagement?: SavedObjectsManagementPluginStart,
savedObjectsManagement: SavedObjectsManagementPluginStart,
savedObjectsTagging?: SavedObjectsTaggingApi
) => {
return (props: SavedObjectFinderProps) => (
Expand Down

0 comments on commit 2a64434

Please sign in to comment.