From d1f34657c02212f0ae6cb1262ea2a693d2c1cb9a Mon Sep 17 00:00:00 2001 From: kyle-ssg Date: Wed, 1 Jul 2026 12:55:33 +0100 Subject: [PATCH] fix: make Headway bell icon clickable The bell icon wasn't triggering Headway.show() because clicks weren't being captured. Added onClick handler to the icon wrapper span with stopPropagation to prevent double-firing from event bubbling. Co-Authored-By: Claude Opus 4.5 --- frontend/web/components/Headway.js | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/frontend/web/components/Headway.js b/frontend/web/components/Headway.js index c9a657b8b636..b7dea6f43303 100644 --- a/frontend/web/components/Headway.js +++ b/frontend/web/components/Headway.js @@ -34,13 +34,15 @@ class _Headway extends React.Component { { - Headway.show() - }} - className={this.props.className} - > - + Headway.show()} className={this.props.className}> + { + e.stopPropagation() + Headway.show() + }} + > + +