-
-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
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
Conversion creates broken tables #31
Comments
The values are miss-formed. When I create the same manually the correct values seems to be: For the first case the 'value': [
{
'type': 'p',
'children': [
{
'type': 'strong',
'children': [
{
'text': 'Text'
}
]
}
] The second is only 'value': [
{
'type': 'p',
'children': [
{
'text': ''
}
]
},
{
'type': 'p',
'children': [
{
'text': 'Text'
}
]
}
] |
Here is a complete config with 2 broken and 2 ok tables prepared to be manually pasted into the respective schema-fields:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Converting tables with bold text or with line-breaks creates tables that look ok but cannot be edited.
creates
This cell renders ok and seems editable because you can click in it but on entering any character it is emptied.
This cell renders ok but upon clicking in it when editing it throws:
this.props.value[0].children is undefined
The text was updated successfully, but these errors were encountered: