Skip to content

Commit

Permalink
TEST
Browse files Browse the repository at this point in the history
  • Loading branch information
yuliacech committed Nov 1, 2023
1 parent f7056b8 commit 16769d6
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -226,4 +226,15 @@ export const addAllExtensions = (
extensionsService.addFilter(ilmFilterExtension);

extensionsService.addIndexDetailsTab(indexLifecycleTab);

extensionsService.setIndexOverviewContent({
renderContent: ({ index }) => {
return (
<>
<h2>Custom content for index {index.name}</h2>
<pre>{JSON.stringify(index, null, 2)}</pre>
</>
);
},
});
};

0 comments on commit 16769d6

Please sign in to comment.