fix(EntityRow): window.open

This commit is contained in:
WittF 2025-06-22 18:32:03 +08:00
parent 9bd6b158b5
commit cca800afa8

View File

@ -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);