Merge branch 'emoji-pointer' into 'develop'
Add cursor-pointer to emoji reactions in StatusInteractionBar See merge request soapbox-pub/soapbox-fe!1656
This commit is contained in:
commit
d6f3cc7442
1 changed files with 1 additions and 1 deletions
|
@ -139,7 +139,7 @@ const StatusInteractionBar: React.FC<IStatusInteractionBar> = ({ status }): JSX.
|
|||
return (
|
||||
<HStack space={0.5} className='emoji-react p-1' alignItems='center' key={i}>
|
||||
<Emoji
|
||||
className='emoji-react__emoji w-5 h-5 flex-none'
|
||||
className={classNames('emoji-react__emoji w-5 h-5 flex-none', { 'cursor-pointer': features.exposableReactions })}
|
||||
emoji={e.get('name')}
|
||||
onClick={features.exposableReactions ? handleOpenReactionsModal(e) : undefined}
|
||||
/>
|
||||
|
|
Loading…
Reference in a new issue