From 2245f148d6179e828f87363914a02e5973e9f6b7 Mon Sep 17 00:00:00 2001 From: Bohdan Triapitsyn Date: Tue, 19 May 2026 14:51:15 +0300 Subject: [PATCH] fix: limit changelog link hover styling Underlines only the hovered changelog link Removes misleading hover state from changelog sections --- packages/ui/src/components/ui/UpdateDialog.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/ui/src/components/ui/UpdateDialog.tsx b/packages/ui/src/components/ui/UpdateDialog.tsx index 44fe6ba6..243e9d22 100644 --- a/packages/ui/src/components/ui/UpdateDialog.tsx +++ b/packages/ui/src/components/ui/UpdateDialog.tsx @@ -357,7 +357,7 @@ export const UpdateDialog: React.FC = ({ > {changelog.kind === 'raw' ? (
{ const target = e.target as HTMLElement; const a = target.closest('a'); @@ -373,7 +373,7 @@ export const UpdateDialog: React.FC = ({ ) : (
{changelog.sections.map((section) => ( -
+
v{section.version} @@ -383,7 +383,7 @@ export const UpdateDialog: React.FC = ({
{ const target = e.target as HTMLElement; const a = target.closest('a');