File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
redisinsight/ui/src/components
side-panels/panels/enablement-area/EnablementArea/components/EmptyPrompt Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 11import React from 'react'
2- import { EuiEmptyPrompt } from '@elastic/eui'
2+
33import LogoIcon from 'uiSrc/assets/img/logo_small.svg'
44import { getConfig } from 'uiSrc/config'
55import { RiLoadingLogo } from 'uiSrc/components/base/display'
6+ import { RiEmptyPrompt } from 'uiSrc/components/base/layout'
67
78const riConfig = getConfig ( )
89
910const PagePlaceholder = ( ) => (
1011 < >
1112 { riConfig . app . env !== 'development' && (
12- < EuiEmptyPrompt
13+ < RiEmptyPrompt
1314 data-testid = "page-placeholder"
1415 icon = { < RiLoadingLogo src = { LogoIcon } $size = "XXL" /> }
15- titleSize = "s"
1616 />
1717 ) }
1818 </ >
Original file line number Diff line number Diff line change 11import React from 'react'
2- import { EuiEmptyPrompt } from '@elastic/eui'
32
43import { EXTERNAL_LINKS } from 'uiSrc/constants/links'
54import { RiIcon } from 'uiSrc/components/base/icons/RiIcon'
65import { Link } from 'uiSrc/components/base/link/Link'
6+ import { RiEmptyPrompt } from 'uiSrc/components/base/layout'
77import styles from './styles.module.scss'
88
99const EmptyPrompt = ( ) => (
1010 < div className = { styles . container } >
11- < EuiEmptyPrompt
11+ < RiEmptyPrompt
1212 data-testid = "enablement-area__empty-prompt"
1313 icon = { < RiIcon type = "ToastDangerIcon" color = "danger600" size = "l" /> }
1414 title = { < h2 > No information to display</ h2 > }
You can’t perform that action at this time.
0 commit comments