From 4d471481b6f6f1e1d05b43b629a3416e7b2bf9cd Mon Sep 17 00:00:00 2001 From: Maxim Leshchenko Date: Sat, 4 Dec 2021 22:27:42 +0200 Subject: [PATCH] Remove extra parentheses from the last commit Please excuse me, it happened by accident!! --- Web/static/js/al_comments.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Web/static/js/al_comments.js b/Web/static/js/al_comments.js index 516cbdc0..111b558c 100644 --- a/Web/static/js/al_comments.js +++ b/Web/static/js/al_comments.js @@ -7,6 +7,6 @@ u(".comment-reply").on("click", function(e) { let postId = comment.data("post-id"); console.log(postId) - inputbox.text("[" + (fromGroup ? "club" : "id") + "" + authorId + "|" + authorNm + "], "); + inputbox.text("[" + (fromGroup ? "club" : "id") + authorId + "|" + authorNm + "], "); inputbox.trigger("focusin"); });