Skip to content

Commit 94f4622

Browse files
#RI-2509-update tooltip label (#1187)
1 parent dd83297 commit 94f4622

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

redisinsight/ui/src/components/query-card/QueryCardHeader/QueryCardHeader.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ const QueryCardHeader = (props: Props) => {
242242
{mode === RunQueryMode.Raw && (
243243
<EuiToolTip
244244
className={styles.tooltip}
245-
content="Raw mode"
245+
content="Raw Mode"
246246
position="bottom"
247247
>
248248
<EuiTextColor className={cx(styles.timeText, styles.mode)}>

redisinsight/ui/src/components/query/Query/Query.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ const Query = (props: Props) => {
494494
<div className={cx(styles.actions, { [styles.disabledActions]: isDedicatedEditorOpen })}>
495495
<EuiToolTip
496496
position="left"
497-
content="Raw mode"
497+
content="Raw Mode"
498498
data-testid="change-mode-tooltip"
499499
>
500500
<EuiButton

redisinsight/ui/src/constants/keyboardShortcuts.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const COMMON_SHORTCUTS = {
4343
keys: ['Ctrl', 'Enter'],
4444
},
4545
changeGroupMode: {
46-
label: 'Group mode',
46+
label: 'Group Mode',
4747
description: 'Toggle the group mode in Workbench',
4848
keys: ['Ctrl', 'Shift', 'G'],
4949
},
@@ -111,7 +111,7 @@ const MAC_SHORTCUTS = {
111111
keys: [(<span className="cmdSymbol"></span>), 'Enter'],
112112
},
113113
changeGroupMode: {
114-
label: 'Group mode',
114+
label: 'Group Mode',
115115
description: 'Toggle the group mode in Workbench',
116116
keys: [(<span className="cmdSymbol"></span>), 'Shift', 'G'],
117117
},

0 commit comments

Comments
 (0)