Remove redundant double quotes in page titles (#11352)
This commit is contained in:
parent
92337b0504
commit
dc452bf89a
1 changed files with 1 additions and 1 deletions
|
@ -166,7 +166,7 @@ const headerActions = $computed(() => []);
|
|||
const headerTabs = $computed(() => []);
|
||||
|
||||
definePageMetadata(computed(() => page ? {
|
||||
title: computed(() => page.title || page.name),
|
||||
title: page.title || page.name,
|
||||
avatar: page.user,
|
||||
path: `/@${page.user.username}/pages/${page.name}`,
|
||||
share: {
|
||||
|
|
Loading…
Reference in a new issue