Skip to content

Commit 6d45039

Browse files
[Observability] Remove app logos (#72259) (#72391)
* removing app logos * fixing TS error Co-authored-by: Cauê Marcondes <55978943+cauemarcondes@users.noreply.github.com>
1 parent b41cb40 commit 6d45039

File tree

2 files changed

+1
-5
lines changed
  • x-pack/plugins/observability/public

2 files changed

+1
-5
lines changed

x-pack/plugins/observability/public/components/app/empty_section/index.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ export const EmptySection = ({ section }: Props) => {
1515
return (
1616
<EuiEmptyPrompt
1717
style={{ maxWidth: 'none' }}
18-
iconType={section.icon}
19-
iconColor="default"
2018
title={<h2>{section.title}</h2>}
2119
titleSize="xs"
2220
body={<EuiText color="default">{section.description}</EuiText>}

x-pack/plugins/observability/public/pages/landing/index.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import {
1010
EuiFlexGrid,
1111
EuiFlexGroup,
1212
EuiFlexItem,
13-
EuiIcon,
1413
EuiImage,
1514
EuiSpacer,
1615
EuiText,
@@ -19,10 +18,10 @@ import {
1918
import { i18n } from '@kbn/i18n';
2019
import React, { useContext } from 'react';
2120
import styled, { ThemeContext } from 'styled-components';
21+
import { IngestManagerPanel } from '../../components/app/ingest_manager_panel';
2222
import { WithHeaderLayout } from '../../components/app/layout/with_header';
2323
import { usePluginContext } from '../../hooks/use_plugin_context';
2424
import { appsSection } from '../home/section';
25-
import { IngestManagerPanel } from '../../components/app/ingest_manager_panel';
2625

2726
const EuiCardWithoutPadding = styled(EuiCard)`
2827
padding: 0;
@@ -68,7 +67,6 @@ export const LandingPage = () => {
6867
<EuiCardWithoutPadding
6968
display="plain"
7069
layout="horizontal"
71-
icon={<EuiIcon size="l" type={app.icon} />}
7270
title={
7371
<EuiTitle size="xs" className="title">
7472
<h3>{app.title}</h3>

0 commit comments

Comments
 (0)