From 98fa8eafdfde46468d1960be9736ac2913f35a05 Mon Sep 17 00:00:00 2001 From: Jeffrey Gleason Date: Wed, 12 Aug 2026 07:30:14 -0400 Subject: [PATCH] algo team reply feedback (#11444) --- .../PostControls/PostMenu/PostMenuItems.tsx | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/components/PostControls/PostMenu/PostMenuItems.tsx b/src/components/PostControls/PostMenu/PostMenuItems.tsx index 7ed925405a..b51f6cb7cb 100644 --- a/src/components/PostControls/PostMenu/PostMenuItems.tsx +++ b/src/components/PostControls/PostMenu/PostMenuItems.tsx @@ -494,6 +494,13 @@ let PostMenuItems = ({ void openLink(url) } + const onLabelReply = () => { + const url = `https://docs.google.com/forms/d/e/1FAIpQLScWa03XbS_knVbSjnc4DENACN5A2YvBZjtjrpI1XdDbK7d3Ow/viewform?entry.1843100496=${toShareUrl( + href, + )}` + void openLink(url) + } + const onSignIn = () => requireSignIn(() => {}) const onPressHideTranslation = () => clearTranslation() @@ -618,6 +625,15 @@ let PostMenuItems = ({ {l`Assign topic for algo`} + {isReply && ( + + {l`Label reply for algo`} + + + )} )}