Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion website/app/pages/clusters/[number].vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ if (route.fullPath !== canonicalPath.value) {
}

useQueueRfcEditorHead({
title: 'Clusters of upcoming RFCs',
title: clusterNumber.value
? `Cluster ${clusterNumber.value}`
: `Cluster of upcoming RFCs`,
canonicalPath: canonicalPath.value,
contentType: 'article'
})
Expand Down
2 changes: 0 additions & 2 deletions website/app/utils/validators.ts
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,6 @@ export type QueueCommon = z.infer<typeof QueueCommonSchema>

export type DocumentReferenceCommon = z.infer<typeof DocumentReferenceCommonSchema>



export const ClusterDocumentCommonSchema = z.object({
name: z.string(),
rfcNumber: z.number().optional(),
Expand Down
1 change: 1 addition & 0 deletions website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"cleanup": "nuxt cleanup",
"build": "npm run build:nuxt",
"build:nuxt": "nuxt build",
"build:dev": "npm run build:nuxt:dev",
"build:nuxt:dev": "npx --no nuxt prepare && npx --no nuxt build --envName development",
"dev": "nuxt dev",
"test": "npm run test:types",
Expand Down
Loading