Skip to content

Commit

Permalink
Merge pull request #15792 from Expensify/stites-fixEmojiHover
Browse files Browse the repository at this point in the history
Fix emoji reaction icon and copy
  • Loading branch information
techievivek authored Mar 10, 2023
2 parents 3496108 + 47ed37d commit 025ab11
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/components/Reactions/MiniQuickEmojiReactions.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,12 +84,12 @@ const MiniQuickEmojiReactions = (props) => {
ref={ref}
onPress={openEmojiPicker}
isDelayButtonStateComplete={false}
tooltipText={props.translate('reportActionContextMenu.addEmojiReaction')}
tooltipText={props.translate('reportActionContextMenu.addReactionTooltip')}
>
{({hovered, pressed}) => (
<Icon
small
src={Expensicons.Emoji}
src={Expensicons.AddReaction}
fill={StyleUtils.getIconFillColor(getButtonState(hovered, pressed, false))}
/>
)}
Expand Down
3 changes: 1 addition & 2 deletions src/languages/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -225,8 +225,7 @@ export default {
editComment: 'Edit comment',
deleteComment: 'Delete comment',
deleteConfirmation: 'Are you sure you want to delete this comment?',
addEmojiReaction: 'Add emoji reaction',
addReactionTooltip: 'Add Reaction…',
addReactionTooltip: 'Add Reaction',
},
reportActionsView: {
beginningOfArchivedRoomPartOne: 'You missed the party in ',
Expand Down
3 changes: 1 addition & 2 deletions src/languages/es.js
Original file line number Diff line number Diff line change
Expand Up @@ -224,8 +224,7 @@ export default {
editComment: 'Editar commentario',
deleteComment: 'Eliminar comentario',
deleteConfirmation: '¿Estás seguro de que quieres eliminar este comentario?',
addEmojiReaction: 'Añadir una reacción emoji',
addReactionTooltip: 'Añadir una reacción…',
addReactionTooltip: 'Añadir una reacción',
},
reportActionsView: {
beginningOfArchivedRoomPartOne: 'Te perdiste la fiesta en ',
Expand Down

0 comments on commit 025ab11

Please sign in to comment.