X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/cb690390d4f253c3bbb9c543e243cf988f39fbb3..9d1ff3299a57d0e820bf7975f0f3e6080b22f0a5:/services/workbench2/src/store/open-in-new-tab/open-in-new-tab.actions.ts diff --git a/services/workbench2/src/store/open-in-new-tab/open-in-new-tab.actions.ts b/services/workbench2/src/store/open-in-new-tab/open-in-new-tab.actions.ts index 83055e32fc..28da3cf95a 100644 --- a/services/workbench2/src/store/open-in-new-tab/open-in-new-tab.actions.ts +++ b/services/workbench2/src/store/open-in-new-tab/open-in-new-tab.actions.ts @@ -12,9 +12,9 @@ export const openInNewTabAction = (resource: any) => (dispatch: Dispatch, getSta const url = getNavUrl(resource.uuid, getState().auth); if (url[0] === "/") { - window.open(`${window.location.origin}${url}`, "_blank"); + window.open(`${window.location.origin}${url}`, "_blank", "noopener"); } else if (url.length) { - window.open(url, "_blank"); + window.open(url, "_blank", "noopener"); } };