Skip to content

Commit 78426b7

Browse files
#RI-4461 - fix workbench tooltip (#2126)
* #RI-4461 - fix workbench tooltip
1 parent 90845b7 commit 78426b7

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

redisinsight/ui/src/components/navigation-menu/components/help-menu/HelpMenu.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,6 @@ const HelpMenu = () => {
4343
}
4444

4545
const onClickReleaseNotes = async () => {
46-
dispatch(addMessageNotification(
47-
successMessages.INSTALLED_NEW_UPDATE('2.2.1', () => dispatch(setReleaseNotesViewed(true)))
48-
))
4946
sendEventTelemetry({
5047
event: TelemetryEvent.RELEASE_NOTES_LINK_CLICKED,
5148
eventData: {

redisinsight/ui/src/pages/browser/components/bulk-actions/BulkActions.spec.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ describe('BulkActions', () => {
158158
action: BulkActionsType.Delete,
159159
filter: {
160160
match: '*',
161-
filterType: 'hash'
161+
type: 'hash'
162162
}
163163
}
164164
})

redisinsight/ui/src/pages/browser/components/bulk-actions/BulkActionsTabs/BulkActionsTabs.spec.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ describe('BulkActionsTabs', () => {
6262
action: BulkActionsType.Delete,
6363
filter: {
6464
match: 'PATTERN',
65-
filter: 'set'
65+
type: 'set'
6666
}
6767
}
6868
});

redisinsight/ui/src/pages/workbench/components/wb-view/WBView/WBView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ const WBView = (props: Props) => {
196196
scrollable={false}
197197
className={styles.queryPanel}
198198
initialSize={vertical[verticalPanelIds.firstPanelId] ?? 20}
199-
style={{ minHeight: '140px', overflow: 'hidden' }}
199+
style={{ minHeight: '140px', zIndex: '11' }}
200200
>
201201
<QueryWrapper
202202
query={script}

redisinsight/ui/src/styles/base/_monaco.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,11 @@
3636
overflow: auto;
3737
}
3838

39+
.monaco-editor .suggest-widget {
40+
max-width: 100% !important;
41+
overflow: hidden;
42+
}
43+
3944
.monaco-params-line {
4045
color: var(--monacoParamsColor) !important;
4146
}

0 commit comments

Comments
 (0)