makes sure the value titels are shown not just the ID's

This commit is contained in:
augurk 2023-01-24 15:15:42 +01:00
parent 6836f05d06
commit c8455ed31f
5 changed files with 12 additions and 29 deletions

View File

@ -2,9 +2,9 @@ import { CollectionConfig } from 'payload/types';
const Dispatches: CollectionConfig = {
slug: 'dispatches',
// admin: {
// useAsTitle: 'email',
// },
admin: {
useAsTitle: 'dispatchesCode',
},
access: {
read: () => true,
},

View File

@ -1,17 +0,0 @@
import { CollectionConfig } from 'payload/types';
// Example Collection - For reference only, this must be added to payload.config.ts to be used.
const Examples: CollectionConfig = {
slug: 'examples',
admin: {
useAsTitle: 'someField',
},
fields: [
{
name: 'someField',
type: 'text',
},
],
}
export default Examples;

View File

@ -2,9 +2,9 @@ import { CollectionConfig } from 'payload/types';
const Makers: CollectionConfig = {
slug: 'makers',
// admin: {
// useAsTitle: 'email',
// },
admin: {
useAsTitle: 'name',
},
access: {
read: () => true,
},

View File

@ -2,9 +2,9 @@ import { CollectionConfig } from 'payload/types';
const Products: CollectionConfig = {
slug: 'products',
// admin: {
// useAsTitle: 'email',
// },
admin: {
useAsTitle: 'productTitle',
},
access: {
read: () => true,
},

View File

@ -2,9 +2,9 @@ import { CollectionConfig } from 'payload/types';
const Retailers: CollectionConfig = {
slug: 'retailers',
// admin: {
// useAsTitle: 'email',
// },
admin: {
useAsTitle: 'name',
},
access: {
read: () => true,
},