diff --git a/app/views/RoomActionsView/index.js b/app/views/RoomActionsView/index.js index e2e003a29..20cff6c2b 100644 --- a/app/views/RoomActionsView/index.js +++ b/app/views/RoomActionsView/index.js @@ -244,7 +244,7 @@ class RoomActionsView extends React.Component { testID: 'room-actions-voice' }, { - icon: 'camera', // TODO: change me + icon: 'camera', name: I18n.t('Video_call'), event: () => RocketChat.callJitsi(rid), testID: 'room-actions-video' diff --git a/app/views/RoomInfoView/index.js b/app/views/RoomInfoView/index.js index 8794995ac..36993de3b 100644 --- a/app/views/RoomInfoView/index.js +++ b/app/views/RoomInfoView/index.js @@ -330,7 +330,7 @@ class RoomInfoView extends React.Component { return ( {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} ); }