Merge branch 'main' into 21357-favorites-names
[arvados.git] / services / workbench2 / src / store / open-in-new-tab / open-in-new-tab.actions.ts
index 83055e32fcbd3750e50b648c4166f6d618b469de..28da3cf95ab968c62e6d6dd06f956f31e231b97f 100644 (file)
@@ -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");
     }
 };