We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 775e8e7 commit 36e6450Copy full SHA for 36e6450
src/components/ResourcesBySelector.tsx
@@ -99,6 +99,7 @@ export default function ResourcesBySelector({
99
? `/videos/${page.data.url}/`
100
: `/${page.id}/`;
101
102
+ // title can either be set directly in title or added as a meta.title property when we want something different for sidebar and SEO titles
103
let title;
104
105
if (page.collection === "docs") {
src/schemas/stream.ts
@@ -10,6 +10,7 @@ export const streamSchema = z.object({
10
transcript: z.string().optional(),
11
chapters: z.record(z.string(), z.string()).optional(),
12
tags: z.array(z.string()).optional(),
13
+ updated: z.date().optional(),
14
thumbnail: z
15
.object({
16
url: z.string(),
0 commit comments