Skip to content

Commit

Permalink
fix(richtext-lexical): inline blocks drawer not rendering any fields …
Browse files Browse the repository at this point in the history
…due to incorrect schemapath suffix (#9158)
  • Loading branch information
AlessioGr authored Nov 12, 2024
1 parent d3cd9ba commit a1c99c8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ export const BlocksPlugin: PluginComponent<BlocksFeatureClientProps> = () => {
editor.dispatchCommand(INSERT_INLINE_BLOCK_COMMAND, data)
}}
schemaPath={schemaPath}
schemaPathSuffix={`lexical_blocks.${blockFields?.blockType}.fields`}
schemaPathSuffix={`lexical_inline_blocks.${blockFields?.blockType}.fields`}
/>
)
}

0 comments on commit a1c99c8

Please sign in to comment.