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;