Unable to save comments #3487
-
DescriptionUnable to save comments
However CommentsProvider has events such as |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
having same issue |
Beta Was this translation helpful? Give feedback.
-
Whats the fix? I could never get comments to save. |
Beta Was this translation helpful? Give feedback.
-
The |
Beta Was this translation helpful? Give feedback.
The
onChange
prop only handles changes to the Slate value. Comment data must be stored separately from the Slate value, such as in a database table, and updated in response toonCommentAdd
,onCommentUpdate
andonCommentDelete
. You should implement this yourself in a way that is appropriate for your app.