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 authored and jeremylenz committed Sep 6, 2024
1 parent 8e10194 commit 123ad20
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,10 @@ const TableIndexPage = ({
hasHelpPage && {
title: __('Documentation'),
icon: <QuestionCircleIcon />,
action: { href: customHelpURL || helpURL() },
action: {
href: customHelpURL || helpURL(),
target: '_blank',
},
},
...customActionButtons,
].filter(item => item);
Expand Down

0 comments on commit 123ad20

Please sign in to comment.