[FIX] More missing icons (#2360)

This commit is contained in:
Diego Mello 2020-07-30 16:48:06 -03:00 committed by GitHub
parent 097304b5fa
commit 0e23ab880f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -244,7 +244,7 @@ class RoomActionsView extends React.Component {
testID: 'room-actions-voice' testID: 'room-actions-voice'
}, },
{ {
icon: 'camera', // TODO: change me icon: 'camera',
name: I18n.t('Video_call'), name: I18n.t('Video_call'),
event: () => RocketChat.callJitsi(rid), event: () => RocketChat.callJitsi(rid),
testID: 'room-actions-video' testID: 'room-actions-video'

View File

@ -330,7 +330,7 @@ class RoomInfoView extends React.Component {
return ( return (
<View style={styles.roomButtonsContainer}> <View style={styles.roomButtonsContainer}>
{this.renderButton(this.goRoom, 'message', I18n.t('Message'))} {this.renderButton(this.goRoom, 'message', I18n.t('Message'))}
{jitsiEnabled ? this.renderButton(this.videoCall, 'video-1', I18n.t('Video_call')) : null} {jitsiEnabled ? this.renderButton(this.videoCall, 'camera', I18n.t('Video_call')) : null}
</View> </View>
); );
} }