From 7f2d33f17b073ae8268cd9bc6c9621ce35bd3298 Mon Sep 17 00:00:00 2001 From: Valentin Mihai Date: Tue, 10 Jan 2023 15:52:00 +0200 Subject: [PATCH] RED-5918 - Help mode links overlay the filter menu in file editor --- src/lib/help-mode/help-mode.service.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/help-mode/help-mode.service.ts b/src/lib/help-mode/help-mode.service.ts index 219f83b..6bd34de 100644 --- a/src/lib/help-mode/help-mode.service.ts +++ b/src/lib/help-mode/help-mode.service.ts @@ -11,6 +11,7 @@ const ANNOTATIONS_LIST_ID = 'annotations-list'; const OVERLAPPING_DROPDOWNS_IDS = { USER_MENU: 'user-menu-items', WORKLOAD_FILTER: 'workload-filters', + DOCUMENT_INFO: 'document-info', }; const SCROLL_BUTTONS_IDS = ['scroll-up', 'scroll-down']; @@ -24,6 +25,7 @@ export type ScrollableParentView = keyof typeof ScrollableParentViews; export const OverlappingElements = { USER_MENU: 'USER_MENU', WORKLOAD_FILTER: 'WORKLOAD_FILTER', + DOCUMENT_INFO: 'DOCUMENT_INFO', } as const; export type OverlappingElement = keyof typeof OverlappingElements;