Daniela Rus Morales
Daniela Rus Morales
Duplicate of #256
Resolved with ebd355dab8f0ba6d59c9b9c7a1eecbc4d735d897.
Hi @beasyx0, I need more information. I thought it was the same issue as #256, but if not we need to get to know all the detauls. One thing you...
Tell me where I can get your code to take a look at it. If you prefer to keep it private, then create the minimum code to reproduce the issue....
The solution is to change the code of the ReactJS plugin so that when the comment form has been submitted without issues the form disappears.
One detail that comes to my mind about this is that when submitting the form there might be errors. We have to be sure that the form gets hidden only...
Sorry for the late reply, @ogurec-ogurec. The code is in `static/django_comments_xtd/js/src/comment.jsx`. Look for `reply_form`. It's an object with the form component and a boolean `is_visible`. The problem is that the...
I would apply the following changes: diff --git a/django_comments_xtd/static/django_comments_xtd/js/src/comment.jsx b/django_comments_xtd/static/django_comments_xtd/js/src/comment.jsx index 5a0d64b..534d85a 100644 --- a/django_comments_xtd/static/django_comments_xtd/js/src/comment.jsx +++ b/django_comments_xtd/static/django_comments_xtd/js/src/comment.jsx @@ -207,7 +207,14 @@ export class Comment extends React.Component { return null; }...
Hi @JanMalte, the scenario above is different than the one of `COMMENTS_XTD_CONFIRM_EMAIL`. Comment confirmation by email is enabled with that setting. But still someone could fill the comment form with...
It's not implemented in the app, but it would be a nice to have feature. I will try to draft a possible solution later today. So far I can only...