diff --git a/src/component/Admin/Entity/EntityRow.tsx b/src/component/Admin/Entity/EntityRow.tsx index ac73bb1..b07be39 100644 --- a/src/component/Admin/Entity/EntityRow.tsx +++ b/src/component/Admin/Entity/EntityRow.tsx @@ -50,7 +50,8 @@ const EntityRow = ({ dispatch(getEntityUrl(entity?.id ?? 0)) .then((url) => { - window.location.assign(url); + // window.location.assign(url); + window.open(url, "_blank"); }) .finally(() => { setOpenLoading(false);