From 98018d3a2bd20cb88b792c06a275f153e20fdc6c Mon Sep 17 00:00:00 2001 From: Julen Landa Alustiza Date: Jul 02 2019 05:59:15 +0000 Subject: repo_pull_request: Fix typo on submit actions --- diff --git a/pagure/templates/repo_pull_request.html b/pagure/templates/repo_pull_request.html index 7f6eda7..f2b7644 100644 --- a/pagure/templates/repo_pull_request.html +++ b/pagure/templates/repo_pull_request.html @@ -1008,11 +1008,11 @@ $(document).ready(function() { }); $('.form_pr_drop_comment').submit(function() { - return try_async_comment(this, null); + return try_async_comment($(this), null); }); $('.form_pr_add_comment').submit(function() { - return try_async_comment($this, false); + return try_async_comment($(this), false); }) {% if pull_request %}