diff --git a/src/collections/Posts/Posts.ts b/src/collections/Posts/Posts.ts index b495f28..060ab07 100644 --- a/src/collections/Posts/Posts.ts +++ b/src/collections/Posts/Posts.ts @@ -158,7 +158,6 @@ export const Posts = buildVersionedCollectionConfig({ defaultValue: new Date().toISOString(), admin: { date: { pickerAppearance: "dayOnly", displayFormat: "yyyy-MM-dd" }, - position: "sidebar", }, required: true, }, @@ -169,7 +168,6 @@ export const Posts = buildVersionedCollectionConfig({ defaultValue: false, admin: { description: "If enabled, the post won't appear in the 'News' section", - position: "sidebar", }, }, ], diff --git a/src/collections/Recorders/Recorders.ts b/src/collections/Recorders/Recorders.ts index 0e80e5a..9f9d8ac 100644 --- a/src/collections/Recorders/Recorders.ts +++ b/src/collections/Recorders/Recorders.ts @@ -125,7 +125,6 @@ export const Recorders = buildCollectionConfig({ label, value, })), - admin: { position: "sidebar" }, }, { name: fields.anonymize, @@ -135,7 +134,6 @@ export const Recorders = buildCollectionConfig({ admin: { description: "If enabled, this recorder's username will not be made public. Instead they will be referred to as 'Recorder#0000' where '0000' is a random four digit number", - position: "sidebar", }, }, ], diff --git a/src/collections/Videos/Videos.ts b/src/collections/Videos/Videos.ts index e4c4976..97da2f9 100644 --- a/src/collections/Videos/Videos.ts +++ b/src/collections/Videos/Videos.ts @@ -86,7 +86,6 @@ export const Videos: CollectionConfig = buildCollectionConfig({ type: "date", admin: { date: { pickerAppearance: "dayOnly", displayFormat: "yyyy-MM-dd" }, - position: "sidebar", }, required: true, }, @@ -94,7 +93,6 @@ export const Videos: CollectionConfig = buildCollectionConfig({ name: fields.channel, type: "relationship", relationTo: Collections.VideosChannels, - admin: { position: "sidebar" }, }, ], });