From 26c4d5ac57a87f93a6f0dea7d9472d29297835c0 Mon Sep 17 00:00:00 2001 From: Rajat Rajdeep Date: Sun, 18 Jun 2023 20:16:02 +0530 Subject: [PATCH] Fix issue(#714) with voting proposal --- junction/templates/proposals/detail/comments.html | 1 + 1 file changed, 1 insertion(+) diff --git a/junction/templates/proposals/detail/comments.html b/junction/templates/proposals/detail/comments.html index f836bf3e..919693d9 100644 --- a/junction/templates/proposals/detail/comments.html +++ b/junction/templates/proposals/detail/comments.html @@ -114,6 +114,7 @@
{% if user.is_authenticated %} $('.js-proposal-upvote, .js-proposal-downvote, .js-proposal-comment-upvote, .js-proposal-comment-downvote').click(function(e){ e.preventDefault(); + e.stopImmediatePropagation(); var _that = $(this); var url = _that.attr('data-url'), remove_vote_url = _that.attr('data-remove-vote-url');