We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, this is basically a continuation of this issue
I have very simple, one-leveled list on the Hygraph content field. But when it comes to the RichEditor component there is always nested <li> inside.
RichEditor
<li>
Here is the screenshot of the content on Hygraph
And here how it's actually transformed when it passed down to RichText component.
RichText
"children": [ { "type": "paragraph", "children": [ { "bold": true, "text": "OWNR lets you buy later at a rate that is better for you" } ] }, { "type": "bulleted-list", "children": [ { "type": "list-item", "children": [ { "type": "list-item-child", "children": [ { "type": "list-item", "children": [ { "type": "list-item-child", "children": [ { "text": "There are no broker fees with OWNR, so it doesn’t impact on your savings. " } ] } ] } ] } ] }, { "type": "list-item", "children": [ { "type": "list-item-child", "children": [ { "type": "list-item", "children": [ { "type": "list-item-child", "children": [ { "text": "You don’t have to pay a deposit either, meaning you can invest the money for later. " } ] } ] } ] } ] }, { "type": "list-item", "children": [ { "type": "list-item-child", "children": [ { "type": "list-item", "children": [ { "type": "list-item-child", "children": [ { "text": "OWNR puts 10% of the leasing rate towards your equity share. " } ] } ] } ] } ] }, { "type": "list-item", "children": [ { "type": "list-item-child", "children": [ { "type": "list-item", "children": [ { "type": "list-item-child", "children": [ { "text": "There’s no need for you to renovate, because OWNR takes care of it before you move in. " } ] } ] } ] } ] } ] }, { "type": "paragraph", "children": [ { "text": "" } ] } ] }
As you can see, there is always list-item that is nested withing another list-item
list-item
I hope that it will help to identify the issue faster
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello, this is basically a continuation of this issue
I have very simple, one-leveled list on the Hygraph content field. But when it comes to the
RichEditor
component there is always nested<li>
inside.Here is the screenshot of the content on Hygraph
![Screenshot 2024-12-27 at 11 42 47](https://private-user-images.githubusercontent.com/175221528/398920592-f68fb2e2-52ec-41d7-8666-3700dae2dde1.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkyNzkyOTMsIm5iZiI6MTczOTI3ODk5MywicGF0aCI6Ii8xNzUyMjE1MjgvMzk4OTIwNTkyLWY2OGZiMmUyLTUyZWMtNDFkNy04NjY2LTM3MDBkYWUyZGRlMS5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjUwMjExJTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI1MDIxMVQxMzAzMTNaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT00YjliNzUxZDNhOWI0YTZmMjRlYjBhOTU4OTZlZmU1ZDExYTBkY2QxZDlhYWUzY2M1NTJiZmJiNTcyZWI5ODdhJlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.a4bKc4z3pHfGNw4K25xX2CrT4KUTOLMaAZRS_6pyhhU)
And here how it's actually transformed when it passed down to
RichText
component.As you can see, there is always
list-item
that is nested withing anotherlist-item
I hope that it will help to identify the issue faster
The text was updated successfully, but these errors were encountered: