[FIX] Missing icons (#2353)
This commit is contained in:
parent
54bddf035d
commit
c37eb99e55
|
@ -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)
|
||||
});
|
||||
|
|
|
@ -144,7 +144,7 @@ class MessageBox extends Component {
|
|||
},
|
||||
{
|
||||
title: I18n.t('Choose_file'),
|
||||
icon: 'file',
|
||||
icon: 'attach',
|
||||
onPress: this.chooseFile
|
||||
},
|
||||
{
|
||||
|
|
|
@ -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({
|
||||
|
|
Loading…
Reference in New Issue