From 463d9427c5f97ecf5322fa140e758d87875e48cc Mon Sep 17 00:00:00 2001 From: Daniel Supernault <danielsupernault@gmail.com> Date: Sat, 20 Oct 2018 21:23:40 -0600 Subject: [PATCH] Update commentform.js --- resources/assets/js/components/commentform.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/assets/js/components/commentform.js b/resources/assets/js/components/commentform.js index 3f048271..0563fecc 100644 --- a/resources/assets/js/components/commentform.js +++ b/resources/assets/js/components/commentform.js @@ -35,7 +35,7 @@ $(document).ready(function() { var comments = el.parents().eq(1).find('.comments'); } - var comment = '<p class="mb-2"><span class="font-weight-bold pr-1"><bdi><a class="text-dark" href="' + profile + '">' + username + '</a></bdi></span><span class="comment-text">'+ reply + '</span></p>'; + var comment = '<p class="mb-0"><span class="font-weight-bold pr-1"><bdi><a class="text-dark" href="' + profile + '">' + username + '</a></bdi></span><span class="comment-text">'+ reply + '</span></p>'; comments.prepend(comment);