Skip to content

Commit

Permalink
Removes no data redirects for obs overview (#136442)
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonrhodes authored Jul 19, 2022
1 parent b72601c commit feed53a
Show file tree
Hide file tree
Showing 13 changed files with 103 additions and 480 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ interface Props {
title: string;
hasError: boolean;
children: React.ReactNode;
initialIsOpen?: boolean;
appLink?: AppLink;
showExperimentalBadge?: boolean;
}
Expand All @@ -38,13 +39,14 @@ export function SectionContainer({
appLink,
children,
hasError,
initialIsOpen = true,
showExperimentalBadge = false,
}: Props) {
const { http } = useKibana<ObservabilityAppServices>().services;
return (
<EuiPanel color="subdued">
<EuiAccordion
initialIsOpen
initialIsOpen={initialIsOpen}
id={title}
buttonContentClassName="accordion-button"
buttonContent={
Expand Down
62 changes: 0 additions & 62 deletions x-pack/plugins/observability/public/pages/home/index.test.tsx

This file was deleted.

26 changes: 0 additions & 26 deletions x-pack/plugins/observability/public/pages/home/index.tsx

This file was deleted.

60 changes: 0 additions & 60 deletions x-pack/plugins/observability/public/pages/home/section.ts

This file was deleted.

47 changes: 0 additions & 47 deletions x-pack/plugins/observability/public/pages/landing/index.tsx

This file was deleted.

This file was deleted.

12 changes: 0 additions & 12 deletions x-pack/plugins/observability/public/pages/landing/styles.scss

This file was deleted.

Loading

0 comments on commit feed53a

Please sign in to comment.