Skip to content

Commit

Permalink
Fixes #37592 - open Documentation in new tab in generic table
Browse files Browse the repository at this point in the history
  • Loading branch information
MariaAga committed Jun 24, 2024
1 parent 7878a4a commit cf87643
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,11 @@ const TableIndexPage = ({
hasHelpPage && {
title: __('Documentation'),
icon: <QuestionCircleIcon />,
action: { href: customHelpURL || helpURL() },
action: {
href: customHelpURL || helpURL(),
target: '_blank',
rel: 'noopener noreferrer',
},
},
...customActionButtons,
].filter(item => item);
Expand Down

0 comments on commit cf87643

Please sign in to comment.