Skip to content

Commit cadeae1

Browse files
committed
RI-6314 - Modules name are old
1 parent 1bb7959 commit cadeae1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

redisinsight/ui/src/components/messages/module-not-loaded/ModuleNotLoaded.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ const ModuleNotLoaded = ({ moduleName, id, type = 'workbench', onClose }: IProps
112112
)}
113113
</div>
114114
<div className={styles.contentWrapper}>
115-
{renderTitle(width, module)}
115+
{renderTitle(width, MODULE_TEXT_VIEW[moduleName])}
116116
<EuiText className={styles.bigText}>
117117
{CONTENT[moduleName]?.text.map((item: string) => (
118118
width > MIN_ELEMENT_WIDTH ? <>{item}<br /></> : item
@@ -130,7 +130,7 @@ const ModuleNotLoaded = ({ moduleName, id, type = 'workbench', onClose }: IProps
130130
))}
131131
</EuiText>
132132
)}
133-
{renderText(module)}
133+
{renderText(MODULE_TEXT_VIEW[moduleName])}
134134
</div>
135135
</div>
136136
<div className={styles.linksWrapper}>

0 commit comments

Comments
 (0)