Merge branch 'poll-title' into 'main'

Always display poll option title

See merge request soapbox-pub/soapbox!2849
This commit is contained in:
marcin mikołajczak 2023-10-31 19:30:44 +00:00
commit 748b21deac
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ const PollOption: React.FC<IPollOption> = (props): JSX.Element | null => {
return (
<div key={option.title}>
{showResults ? (
<div title={voted ? message : undefined}>
<div title={message}>
<HStack
justifyContent='between'
alignItems='center'