[FIX] Missing icons (#2353)

This commit is contained in:
Diego Mello 2020-07-29 18:02:51 -03:00 committed by GitHub
parent 54bddf035d
commit c37eb99e55
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View File

@ -296,7 +296,7 @@ const MessageActions = React.memo(forwardRef(({
// Create Discussion
options.push({
title: I18n.t('Start_a_Discussion'),
icon: 'chat',
icon: 'discussions',
onPress: () => handleCreateDiscussion(message)
});
@ -371,7 +371,7 @@ const MessageActions = React.memo(forwardRef(({
if (allowDelete(message)) {
options.push({
title: I18n.t('Delete'),
icon: 'trash',
icon: 'delete',
danger: true,
onPress: () => handleDelete(message)
});

View File

@ -144,7 +144,7 @@ class MessageBox extends Component {
},
{
title: I18n.t('Choose_file'),
icon: 'file',
icon: 'attach',
onPress: this.chooseFile
},
{

View File

@ -146,7 +146,7 @@ class RoomMembersView extends React.Component {
showActionSheet({
options: [{
icon: userIsMuted ? 'volume' : 'volume-off',
icon: userIsMuted ? 'audio' : 'audio-disabled',
title: I18n.t(userIsMuted ? 'Unmute' : 'Mute'),
onPress: () => {
showConfirmationAlert({