File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
user-interface/src/lib/components Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -41,6 +41,11 @@ function mapNavState(path: string) {
41
41
}
42
42
43
43
const userMenuItems : MenuItem [ ] = [
44
+ {
45
+ label : 'Help' ,
46
+ address : 'https://doj365.sharepoint.us/sites/USTP-OIT/SitePages/CAMS.aspx' ,
47
+ target : 'cams_help' ,
48
+ } ,
44
49
{
45
50
label : 'Logout' ,
46
51
address : LOGOUT_PATH ,
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ export type MenuItem = {
8
8
address : string ;
9
9
title ?: string ;
10
10
className ?: string ;
11
+ target ?: string ;
11
12
} ;
12
13
13
14
export type DropdownMenuProps = {
@@ -145,6 +146,7 @@ export function DropdownMenu(props: DropdownMenuProps) {
145
146
data-testid = { `menu-item-${ id } -${ idx } ` }
146
147
className = "usa-nav-link"
147
148
title = { item . title ?? '' }
149
+ target = { item . target }
148
150
onKeyDown = { handleSubItemKeyDown }
149
151
>
150
152
{ item . label }
You can’t perform that action at this time.
0 commit comments