Add cursor-pointer to emoji reactions in StatusInteractionBar
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
parent
87e39f52e6
commit
c43ad4fe88
1 changed files with 1 additions and 1 deletions
|
@ -139,7 +139,7 @@ const StatusInteractionBar: React.FC<IStatusInteractionBar> = ({ status }): JSX.
|
||||||
return (
|
return (
|
||||||
<HStack space={0.5} className='emoji-react p-1' alignItems='center' key={i}>
|
<HStack space={0.5} className='emoji-react p-1' alignItems='center' key={i}>
|
||||||
<Emoji
|
<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')}
|
emoji={e.get('name')}
|
||||||
onClick={features.exposableReactions ? handleOpenReactionsModal(e) : undefined}
|
onClick={features.exposableReactions ? handleOpenReactionsModal(e) : undefined}
|
||||||
/>
|
/>
|
||||||
|
|
Loading…
Reference in a new issue