From 75ed21410fbf896511beb30928a77d8e496b3f07 Mon Sep 17 00:00:00 2001 From: notfire Date: Fri, 15 Aug 2025 18:26:17 -0400 Subject: [PATCH] add more requirements for fafa399d --- src/components/status/status.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/status/status.js b/src/components/status/status.js index bd7dfdeb..560d678b 100644 --- a/src/components/status/status.js +++ b/src/components/status/status.js @@ -536,9 +536,10 @@ const Status = { }, goToThread (id, e) { if (this.$store.getters.mergedConfig.clickEmptyToOpenConversation) { + console.log(e.target) let targetType = e.target.tagName let targetClasses = e.target.className - if ((targetType !== "DIV" && targetType !== "SPAN") || (targetType === "SPAN" && targetClasses.length === 0) || (targetClasses.includes("userName") || targetClasses.includes("form-bottom") || targetClasses.includes("visibility-tray"))) + if ((targetType !== "DIV" && targetType !== "SPAN") || (targetType === "SPAN" && targetClasses.length === 0) || (targetClasses.includes("userName") || targetClasses.includes("form-bottom") || targetClasses.includes("visibility-tray") || targetClasses.includes("reply-form") || targetClasses.includes("post-status-form") || targetClasses.includes("form-group") || targetClasses.includes("preview-status"))) return this.$router.push({ name: 'conversation', params: { id: id } }) }