fix: blogs and pages cannonical input
This commit is contained in:
parent
8dc3f544d7
commit
92d45e0ee7
@ -58,6 +58,11 @@ export const Blogs: CollectionConfig = {
|
||||
label: "Description",
|
||||
type: "textarea",
|
||||
},
|
||||
{
|
||||
name: "cannonical_url",
|
||||
label: "Cannonical Url",
|
||||
type: "text",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
|
@ -54,6 +54,11 @@ export const Pages: CollectionConfig = {
|
||||
label: "Description",
|
||||
type: "textarea",
|
||||
},
|
||||
{
|
||||
name: "cannonical_url",
|
||||
label: "Cannonical Url",
|
||||
type: "text",
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
|
@ -191,6 +191,7 @@ export interface Blog {
|
||||
meta?: {
|
||||
title?: string | null;
|
||||
description?: string | null;
|
||||
cannonical_url?: string | null;
|
||||
};
|
||||
is_published?: boolean | null;
|
||||
updatedAt: string;
|
||||
@ -303,6 +304,7 @@ export interface Page {
|
||||
meta?: {
|
||||
title?: string | null;
|
||||
description?: string | null;
|
||||
cannonical_url?: string | null;
|
||||
};
|
||||
updatedAt: string;
|
||||
createdAt: string;
|
||||
@ -639,6 +641,7 @@ export interface BlogsSelect<T extends boolean = true> {
|
||||
| {
|
||||
title?: T;
|
||||
description?: T;
|
||||
cannonical_url?: T;
|
||||
};
|
||||
is_published?: T;
|
||||
updatedAt?: T;
|
||||
@ -704,6 +707,7 @@ export interface PagesSelect<T extends boolean = true> {
|
||||
| {
|
||||
title?: T;
|
||||
description?: T;
|
||||
cannonical_url?: T;
|
||||
};
|
||||
updatedAt?: T;
|
||||
createdAt?: T;
|
||||
|
Loading…
x
Reference in New Issue
Block a user