[FIX] More missing icons (#2360)
This commit is contained in:
parent
097304b5fa
commit
0e23ab880f
|
@ -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'
|
||||||
|
|
|
@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue