mirror of
https://github.com/makeplane/plane.git
synced 2026-07-13 14:01:45 +02:00
fix: page open in new tab action (#6408)
This commit is contained in:
committed by
GitHub
parent
bddad8932b
commit
8ea0772a1b
@@ -77,7 +77,7 @@ export const usePageOperations = (
|
||||
}
|
||||
},
|
||||
move: async () => {},
|
||||
openInNewTab: () => window.open(`/${pageLink}`, "_blank"),
|
||||
openInNewTab: () => window.open(pageLink, "_blank"),
|
||||
toggleAccess: async () => {
|
||||
const changedPageType = access === EPageAccess.PUBLIC ? "private" : "public";
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user