Replies: 1 comment
-
Hi, I'm using the latest version of payload (3.24.0) and looking at your setup, the default features should include everything listed as the default feature here. You can change this by changing the I hope my explanation is easy to understand. snippet from the source code: // payload.config.ts
// change this
import { defaultLexical } from '@/fields/defaultLexical'
export default buildConfig({
// your other config...
editor: defaultLexical,
// your other config...
} import {
FixedToolbarFeature,
lexicalEditor,
} from '@payloadcms/richtext-lexical';
export const defaultLexical = lexicalEditor({
// inline toolbar should be included by default, so you only need to add fixedtoolbar
features: ({ defaultFeatures }) => [...defaultFeatures, FixedToolbarFeature()],
}); |
Beta Was this translation helpful? Give feedback.
-
Description
I'm using Payload CMS with
@payloadcms/richtext-lexical
to configure a rich text editor in my project. However, the defaultFeatures only include bold, italic, underline, and link. I'm using payload cms 3.0 with the website template.Even when I manually import and add more features, they do not appear in the Payload CMS admin panel.
Steps to Reproduce
Installed the latest versions of
payload
and@payloadcms/richtext-lexical
.Configured the editor like this:
Inside Payload CMS, only the basic formatting options appear:
What I Tried
Logged
defaultFeatures
inside thefeatures
function:defaultFeatures
only contains bold, italic, underline, and link.Manually imported and added missing features (e.g.,
ParagraphFeature
,HeadingFeature
).Tried importing
defaultFeatures
manually:Checked package versions (
package.json
):Updated everything (
pnpm update
).Cleared cache and reinstalled node_modules (
rm -rf node_modules && pnpm install
).Expected Behavior
When using
defaultFeatures
inlexicalEditor
, it should include more than just bold, italic, underline, and link.Manually adding features like
HeadingFeature
andParagraphFeature
should make them show up in the rich text editor inside Payload CMS.Actual Behavior
Only basic formatting options (bold, italic, underline, link) appear in the rich text editor, even though other features are explicitly added.
Environment
"latest"
"latest"
"^19.0.0"
"^18.20.2 || >=20.9.0"
pnpm
Questions
lexicalEditor
setup?defaultFeatures
contain more than just the basic features?@payloadcms/richtext-lexical
in recent versions?Any help what I'm doing wrong would be greatly appreciated! Thanks!
Beta Was this translation helpful? Give feedback.
All reactions