fix: page open in new tab action (#6408)
This commit is contained in:
parent
bddad8932b
commit
8ea0772a1b
1 changed files with 1 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue