File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
redisinsight/ui/src/pages/pub-sub/components/messages-list/EmptyMessagesList Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ import { Text } from 'uiSrc/components/base/text'
6
6
7
7
import { RiIcon } from 'uiSrc/components/base/icons/RiIcon'
8
8
import styles from './styles.module.scss'
9
+ import { Row } from 'uiSrc/components/base/layout/flex'
9
10
10
11
export interface Props {
11
12
connectionType ?: ConnectionType
@@ -27,10 +28,12 @@ const EmptyMessagesList = ({
27
28
Subscribe to the Channel to see all the messages published to your
28
29
database
29
30
</ Text >
30
- < Text className = { styles . alert } >
31
+ < Row >
31
32
< RiIcon type = "ToastDangerIcon" className = { styles . alertIcon } />
32
- Running in production may decrease performance and memory available
33
- </ Text >
33
+ < Text className = { styles . alert } >
34
+ Running in production may decrease performance and memory available
35
+ </ Text >
36
+ </ Row >
34
37
{ connectionType === ConnectionType . Cluster && isSpublishNotSupported && (
35
38
< >
36
39
< div className = { styles . separator } />
You can’t perform that action at this time.
0 commit comments