|
@@ -31,7 +31,6 @@ import {
|
31
|
31
|
ICON_CLOUD,
|
32
|
32
|
ICON_INFO,
|
33
|
33
|
ICON_USERS,
|
34
|
|
- JITSI_LOGO,
|
35
|
34
|
TRACK_COLOR
|
36
|
35
|
} from './styles';
|
37
|
36
|
|
|
@@ -284,7 +283,6 @@ class StartRecordingDialogContent extends Component<Props> {
|
284
|
283
|
value = { this.props.selectedRecordingService === RECORDING_TYPES.JITSI_REC_SERVICE } />
|
285
|
284
|
) : null;
|
286
|
285
|
|
287
|
|
- const icon = isVpaas ? ICON_CLOUD : JITSI_LOGO;
|
288
|
286
|
const label = isVpaas ? t('recording.serviceDescriptionCloud') : t('recording.serviceDescription');
|
289
|
287
|
const jitsiContentRecordingIconContainer
|
290
|
288
|
= this.props.integrationsEnabled
|
|
@@ -303,7 +301,7 @@ class StartRecordingDialogContent extends Component<Props> {
|
303
|
301
|
<Container className = { contentRecordingClass }>
|
304
|
302
|
<Image
|
305
|
303
|
className = 'content-recording-icon'
|
306
|
|
- src = { icon }
|
|
304
|
+ src = { ICON_CLOUD }
|
307
|
305
|
style = { styles.recordingIcon } />
|
308
|
306
|
</Container>
|
309
|
307
|
<Text
|