#RichText field not showing up in the admin dashboard

1 messages · Page 1 of 1 (latest)

small bronze
#

Hi everyone!

I'm having a weird issue regarding the richText-field. I have added in this collection for example:

import type { CollectionConfig } from 'payload'

export const Feedback: CollectionConfig = {
slug: 'feedback',
fields: [
{
name: 'name',
type: 'text',
required: true,
},
{
name: 'feedback',
type: 'richText',
required: true,
},
],
}

but its not displayed in the admin dashboard. Have anyone else run into this?

One-click deployed to Cloudflare Workers btw.

upper harnessBOT