From 0e23ab880f45baf057c05832f86dd9d3a8f1cbfe Mon Sep 17 00:00:00 2001 From: Diego Mello Date: Thu, 30 Jul 2020 16:48:06 -0300 Subject: [PATCH] [FIX] More missing icons (#2360) --- app/views/RoomActionsView/index.js | 2 +- app/views/RoomInfoView/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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} ); }