From a32462953d1009e9fc6e160ff2b169a8de125219 Mon Sep 17 00:00:00 2001 From: x Date: Sun, 25 Jan 2026 15:34:20 +0100 Subject: [PATCH] feat: Add SQL migration for custom emojis, pinned comments, and thread locking, and remove the comments refresh button from the UI. --- public/s/js/comments.js | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/public/s/js/comments.js b/public/s/js/comments.js index a755ac7..4dc0a69 100644 --- a/public/s/js/comments.js +++ b/public/s/js/comments.js @@ -230,7 +230,7 @@ class CommentSystem { ${currentUserId ? `` : ''} - + ${lockBtn} @@ -503,13 +503,7 @@ class CommentSystem { }); } - // Refresh - const refBtn = this.container.querySelector('#refresh-comments'); - if (refBtn) { - refBtn.addEventListener('click', async () => { - this.loadComments(); - }); - } + // Lock Thread const lockBtn = this.container.querySelector('#lock-thread-btn');