Skip to content

Commit

Permalink
[Index Management] TESTING: Test tab
Browse files Browse the repository at this point in the history
  • Loading branch information
yuliacech committed Oct 24, 2023
1 parent 5169349 commit 74a771d
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -226,4 +226,12 @@ export const addAllExtensions = (
extensionsService.addBanner(ilmBannerExtension);
extensionsService.addSummary(IndexLifecycleSummary);
extensionsService.addFilter(ilmFilterExtension);
extensionsService.addIndexDetailsTab({
id: 'testTab',
name: 'Test tab',
renderTabContent: (indexName, index) => {
return <pre>{JSON.stringify(index, null, 2)}</pre>;
},
order: 11,
});
};

0 comments on commit 74a771d

Please sign in to comment.