diff --git a/CHANGELOG.md b/CHANGELOG.md index 9299bdf18..7478293bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ - Timeline: move pin button to remote (instance) timeline's header - Search: move search icon to the start of textbox - UI: changed how user acct is rendered, domain now shown as button (similar to Thread) +- Mention: fix mention doesn't have underline on hover ## 2023.10.3 - UI: highlight mentions diff --git a/src/soapbox/components/mention.tsx b/src/soapbox/components/mention.tsx index 9499d9302..29d965991 100644 --- a/src/soapbox/components/mention.tsx +++ b/src/soapbox/components/mention.tsx @@ -31,8 +31,8 @@ export const Mention: React.FC = ({ mention, textSize = 'md' }) => { }, []); return ( - e.stopPropagation()} to={`/@${account.acct}`} title={`@${account.fqn}`} className='mention inline-block rounded-full bg-primary-200 py-1 pl-1 pr-2 text-primary-600 dark:bg-primary-800 dark:text-primary-400'> - + e.stopPropagation()} to={`/@${account.acct}`} title={`@${account.fqn}`} className='mention group inline-block rounded-full bg-primary-200 py-1 pl-1 pr-2 text-primary-600 dark:bg-primary-800 dark:text-primary-400'> + @{account.acct}