Skip to content

Commit ce6cf66

Browse files
Move assets and sample_data_resources, update snapshot
1 parent ba89479 commit ce6cf66

File tree

15 files changed

+13
-13
lines changed

15 files changed

+13
-13
lines changed

src/plugins/dashboard/public/application/__snapshots__/dashboard_empty_screen.test.tsx.snap

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/plugins/dashboard/public/application/dashboard_empty_screen.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ export function DashboardEmptyScreen({
5050
}: DashboardEmptyScreenProps) {
5151
const IS_DARK_THEME = uiSettings.get('theme:darkMode');
5252
const emptyStateGraphicURL = IS_DARK_THEME
53-
? '/plugins/kibana/home/assets/welcome_graphic_dark_2x.png'
54-
: '/plugins/kibana/home/assets/welcome_graphic_light_2x.png';
53+
? '/plugins/home/assets/welcome_graphic_dark_2x.png'
54+
: '/plugins/home/assets/welcome_graphic_light_2x.png';
5555
const linkToVisualizeParagraph = (
5656
<p data-test-subj="linkToVisualizeParagraph">
5757
<EuiButton

src/plugins/home/public/application/components/sample_data/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ interface Props {
4242
export function SampleDataCard({ urlBasePath, onDecline, onConfirm }: Props) {
4343
return (
4444
<EuiCard
45-
image={`${urlBasePath}/plugins/kibana/home/assets/illustration_elastic_heart.png`}
45+
image={`${urlBasePath}/plugins/home/assets/illustration_elastic_heart.png`}
4646
textAlign="left"
4747
title={<FormattedMessage id="home.letsStartTitle" defaultMessage="Let's get started" />}
4848
description={

0 commit comments

Comments
 (0)