We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d4d45c commit d1f41ddCopy full SHA for d1f41dd
1 file changed
x-pack/plugins/search_indices/public/components/indices/details_page_mappings.tsx
@@ -20,12 +20,11 @@ export const SearchIndexDetailsMappings = ({ index }: SearchIndexDetailsMappings
20
() => indexManagement.getIndexMappingComponent({ history }),
21
[indexManagement, history]
22
);
23
- return useMemo(() => {
24
- return (
25
- <>
26
- <EuiSpacer />
27
- <IndexMappingComponent index={index} showAboutMappings={false} />
28
- </>
29
- );
30
- }, [IndexMappingComponent, index]);
+
+ return (
+ <>
+ <EuiSpacer />
+ <IndexMappingComponent index={index} showAboutMappings={false} />
+ </>
+ );
31
};
0 commit comments