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

View File

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

View File

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